byte format:X4 : byte format « Data Types « C# / C Sharp






byte format:X4

  
using System;

class MainClass{
   public static void Main(){  

        byte[] byteValues = { 12, 163, 255 };
        foreach (byte byteValue in byteValues)
           Console.WriteLine(byteValue.ToString("X4"));

   }
}
/*

000C
00A3
00FF


*/

   
    
  








Related examples in the same category

1.byte format: X4