Output float point as Hexadecimal

image_pdfimage_print
   
 

using System;
class Sample 
{

    public static void Main() 
    {
       Console.WriteLine("(X) Hexadecimal:. . . . . . . {0:X}
" + -123, -123.45f); 
    }
}

   
     


This entry was posted in Data Types. Bookmark the permalink.