Blog

Seleccione el resultado del siguiente código:

class Program {
static void Main(string[] args) {
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
NetworkStream ns = new NetworkStream(socket);
}
}