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

Author:
 

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

   }
}

   
  

Leave a Reply

Your email address will not be published. Required fields are marked *