Summary description for HexEncoding. http://www.codeproject.com/KB/recipes/hexencoding.aspx
| C# | Visual Basic | Visual C++ |
public class HexEncoding
Public Class HexEncoding
public ref class HexEncoding
| All Members | Constructors | Methods | |||
| Icon | Member | Description |
|---|---|---|
| HexEncoding()()() |
Constructor
| |
| Equals(Object) | (Inherited from Object.) | |
| Finalize()()() | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
| GetByteCount(String) |
Used internally?
| |
| GetBytes(String, Int32%) |
Creates a byte array from the hexadecimal string. Each two characters are combined
to create one byte. First two hexadecimal characters become first byte in returned array.
Non-hexadecimal characters are ignored.
| |
| GetHashCode()()() | Serves as a hash function for a particular type. GetHashCode()()() is suitable for use in hashing algorithms and data structures like a hash table. (Inherited from Object.) | |
| GetType()()() | Gets the Type of the current instance. (Inherited from Object.) | |
| InHexFormat(String) |
Determines if given string is in proper hexadecimal string format
| |
| IsHexDigit(Char) |
Returns true is c is a hexadecimal digit (A-F, a-f, 0-9)
| |
| MemberwiseClone()()() | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| ToString(array<Byte>[]()[]) |
Returns a string (Hexidecimal 0123456789ABCDEF) representation of the bytes in the array.
| |
| ToString()()() | (Inherited from Object.) |
| Object | |
| HexEncoding | |