Output float point as Hexadecimal : float « Data Types « C# / C Sharp






Output float point as Hexadecimal

   

using System;
class Sample 
{

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

   
    
    
  








Related examples in the same category

1.Format a float number in ToString method
2.Int and float valueInt and float value
3.Using Floats
4.Format float as decimal
5.Output float number as currency
6.Format float number as scientific notation
7.Format float point value as fixed point
8.Use general format to output a float point value
9.Round trip float point value
10.Format float as percent value
11.Format float point value as number
12.Single.Epsilon Field: Represents the smallest positive Single value that is greater than zero.
13.Tests whether two float/double values are equal, within an acceptable margin of difference.