C# Programmation Réseau: Diffuser un message avec le protocole UDP

using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
public class BadBroadcast {
   public static void Main()
   {
      Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
      IPEndPoint iep = new IPEndPoint(IPAddress.Broadcast, 9050);
      byte[] data = Encoding.ASCII.GetBytes("This is a test message");
      sock.SendTo(data, iep);
      sock.Close();
   }
}
           
       

C# Programmation Réseau: Exemple de Ping

                  Console.WriteLine("Success - IP Address:{0}", reply.Address, reply.RoundtripTime);
                    } else {
                        Consol

C# Programmation Réseau: Convertir un caractère en son équivalent hexadécimal

 
using System;
public class MainClass{
   public static void Main(){
        char  testChar = 'e';
        if (Uri.IsHexDigit(testChar) == true)
            Console.WriteLine("'{0}' is the hexadecimal representation of {1}", testChar, Uri.FromHex(testChar));
        else 
            Console.WriteLine("'{0}' is not a hexadecimal character", testChar);
        
        string returnString = Uri.HexEscape(testChar);
        Console.WriteLine("The hexadecimal value of '{0}' is {1}", testChar, returnString);
   }
}