Skip to content

Instantly share code, notes, and snippets.

Avatar

Wolfgang Höhne wolfi-by

View GitHub Profile
@louis-e
louis-e / UDPSocket.cs
Last active March 21, 2023 05:18 — forked from darkguy2008/UDPSocket.cs
Simple C# UDP server/client in 62 lines
View UDPSocket.cs
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace UDP
{
public class UDPSocket
{
public Socket _socket;