C# Class PERWAPI.Hex

Facilities for outputting hexadecimal strings
Show file Open project: xored/f4

Public Methods

Method Description
Byte ( int b ) : String

Derives a hexademical string for a byte value

Int ( int val ) : String

Derives a hexademical string for an int value

Int ( uint num ) : String

Derives a hexademical string for an unsigned int value

Long ( long lnum ) : String

Derives a hexademical string for a long value

Long ( ulong num ) : String

Derives a hexademical string for an unsigned long value

Short ( int b ) : String

Derives a hexademical string for a short value

Method Details

Byte() public static method

Derives a hexademical string for a byte value
public static Byte ( int b ) : String
b int the byte value
return String

Int() public static method

Derives a hexademical string for an int value
public static Int ( int val ) : String
val int the int value
return String

Int() public static method

Derives a hexademical string for an unsigned int value
public static Int ( uint num ) : String
num uint the unsigned int value
return String

Long() public static method

Derives a hexademical string for a long value
public static Long ( long lnum ) : String
lnum long the long value
return String

Long() public static method

Derives a hexademical string for an unsigned long value
public static Long ( ulong num ) : String
num ulong the unsigned long value
return String

Short() public static method

Derives a hexademical string for a short value
public static Short ( int b ) : String
b int the short value
return String