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);
   }
}