Ejemplo n.º 1
0
 public static string ToHex(this sbyte @sbyte)
 {
     return(new HexString(@sbyte.GetBytes()));
 }
Ejemplo n.º 2
0
 public static string ToHex(this sbyte @sbyte, HexOptions options)
 {
     return(new HexString(@sbyte.GetBytes(), options));
 }
Ejemplo n.º 3
0
 public static BitArray GetBits(this sbyte value)
 {
     return(value.GetBytes().GetBits(0, 1));
 }