- ConvertHexDigit
byte ConvertHexDigit(byte c)
@param c An ASCII encoded character 0-9 a-f A-F
@return The byte value of the character 0-16.
- ConvertHexDigit
int ConvertHexDigit(char c)
@param c An ASCII encoded character 0-9 a-f A-F
@return The byte value of the character 0-16.
- ConvertHexDigit
int ConvertHexDigit(int c)
@param c An ASCII encoded character 0-9 a-f A-F
@return The byte value of the character 0-16.
- FromHexString
byte[] FromHexString(string s)
- ParseInt
int ParseInt(string s, int offset, int length, int base)
Undocumented in source. Be warned that the author may not have intended to support it.
- ToBytes
T[] ToBytes(string s)
- ToHex
void ToHex(byte b, Appendable buf)
Undocumented in source. Be warned that the author may not have intended to support it.
- ToHex
void ToHex(int value, Appendable buf)
Undocumented in source. Be warned that the author may not have intended to support it.
- ToHex
void ToHex(long value, Appendable buf)
Undocumented in source. Be warned that the author may not have intended to support it.
- ToHexString
string ToHexString(byte b)
Undocumented in source. Be warned that the author may not have intended to support it.
- ToHexString
string ToHexString(byte[] b)
Undocumented in source. Be warned that the author may not have intended to support it.
- ToHexString
string ToHexString(byte[] b, int offset, int length)
Undocumented in source. Be warned that the author may not have intended to support it.
- ToHexString
string ToHexString(const(ubyte)[] b, string separator, string prefix)
Undocumented in source. Be warned that the author may not have intended to support it.