Create UdpClient class and binds it to the local port number provided.
Imports System.IO Imports System.Net Imports System.Text Imports System.Net.Sockets public class MainClass Shared Sub Main() Try Dim udpClient As New UdpClient(11000) Catch e As Exception Console.WriteLine(e.ToString()) End Try End Sub End Class