i have a code
*edited, with the whole code snippet
Dim receivingUdpClient As New UdpClient(20000)
Dim RemoteIpEndPoint As New IPEndPoint(IPAddress.Any, 0)
Try
Console.WriteLine("listening")
Dim receiveBytes As [Byte]() = receivingUdpClient.Receive(RemoteIpEndPoint)
Dim returnData As String = Encoding.ASCII.GetString(receiveBytes)
Console.WriteLine(receiveBytes)
Catch e As Exception
Console.WriteLine(e.ToString())
End Try
but it gives me an error.
a first chance exception of type system.net.sockets.socketexception' occurred in system.dll
i'm really confuse what this means.