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