public static string ValueAsTypeName(byte[] value) { if (value == null) { return(String.Empty); } int v = IntegerParselet.ArrayToInt32(value); if (_types.ContainsKey(v)) { return(_types[v]); } return(_types[255]); }
public static string ValueAsHEX(byte[] value) { return(IntegerParselet.ValueAsHex(value)); }
protected string ValueAsInteger(byte[] value) { return(IntegerParselet.ValueAsInteger(value)); }