Conectando dos clientes UDP a un puerto (Enviar y Recibir)

Intenté la sugerencia deesta pregunt con muy poco éxito.

¡Por favor ... cualquier ayuda será muy apreciada!

Aquí está mi código:

static void Main(string[] args)
{

    IPEndPoint localpt = new IPEndPoint(IPAddress.Any, 6000);

    UdpClient udpServer = new UdpClient(localpt); 
    udpServer.Client.SetSocketOption(
        SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);

    UdpClient udpServer2 = new UdpClient();
    udpServer2.Client.SetSocketOption(
        SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);

    udpServer2.Client.Bind(localpt); // <<---------- Exception here
}

Respuestas a la pregunta(8)

Su respuesta a la pregunta