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