Property | Type | Description | |
---|---|---|---|
Epoch | System.DateTime |
Method | Description | |
---|---|---|
DecodeHex ( this hex ) : string |
Decodes the hexadecimal string into its normal form.
|
|
EncodeAsHex ( this value, string prefix = "" ) : string |
Returns a hex string representation of an array of bytes. From: http://blogs.msdn.com/b/blambert/archive/2009/02/22/blambert-codesnip-fast-byte-array-to-hex-string-conversion.aspx |
|
IsAnonymous ( this type ) : bool |
Determines whether the specified type is anonymous.
|
|
ToBytes ( this datetime, byte array, int offset ) : void |
Writes the datetime as a unix timestamp to the provided array
|
|
ToDateTime ( this timestamp ) : System.DateTime |
Translates a unix/POSIX timestamp to a DateTime
|
|
ToGuid ( this bytes, int offset ) : System.Guid |
converts the array to a Guid value
|
|
ToHex ( this value, string prefix = "" ) : string |
Returns a hex string representation of an array of bytes. From: http://blogs.msdn.com/b/blambert/archive/2009/02/22/blambert-codesnip-fast-byte-array-to-hex-string-conversion.aspx |
|
ToInt ( this bytes, int offset ) : int |
converts the array into a int value (big-endian)
|
|
ToLong ( this bytes, int offset ) : long |
converts the array into a long value (big-endian)
|
|
ToShort ( this bytes, int offset ) : ushort |
converts the array into a unsigned short value (big-endian)
|
|
ToTimestamp ( this datetime ) : long |
Translates the DateTime to a unix/POSIX timestamp
|
Method | Description | |
---|---|---|
GetHexVal ( char hex ) : int |
public static DecodeHex ( this hex ) : string | ||
hex | this | The hexadecimal string. |
return | string |
public static EncodeAsHex ( this value, string prefix = "" ) : string | ||
value | this | The array of bytes. |
prefix | string | string value to prefix hex string with (e.g. 0x) |
return | string |
public static IsAnonymous ( this type ) : bool | ||
type | this | The type. |
return | bool |
public static ToBytes ( this datetime, byte array, int offset ) : void | ||
datetime | this | The datetime. |
array | byte | The array. |
offset | int | The offset. |
return | void |
public static ToDateTime ( this timestamp ) : System.DateTime | ||
timestamp | this | The timestamp. |
return | System.DateTime |
public static ToGuid ( this bytes, int offset ) : System.Guid | ||
bytes | this | The bytes. |
offset | int | The offset. |
return | System.Guid |
public static ToHex ( this value, string prefix = "" ) : string | ||
value | this | The array of bytes. |
prefix | string | string value to prefix hex string with (e.g. 0x) |
return | string |
public static ToInt ( this bytes, int offset ) : int | ||
bytes | this | The bytes. |
offset | int | The offset. |
return | int |
public static ToLong ( this bytes, int offset ) : long | ||
bytes | this | The bytes. |
offset | int | The offset. |
return | long |
public static ToShort ( this bytes, int offset ) : ushort | ||
bytes | this | The bytes. |
offset | int | The offset. |
return | ushort |
public static ToTimestamp ( this datetime ) : long | ||
datetime | this | The datetime. |
return | long |