Method | Description | |
---|---|---|
FromBase64UrlString ( string value ) : byte[] | ||
FromHexString ( string value ) : byte[] |
16進数表記の文字列をバイト列に変換
|
|
FromSizeString ( string value ) : decimal | ||
GetBytes ( bool value ) : byte[] | ||
GetBytes ( char value ) : byte[] | ||
GetBytes ( double value ) : byte[] | ||
GetBytes ( float value ) : byte[] | ||
GetBytes ( int value ) : byte[] | ||
GetBytes ( long value ) : byte[] | ||
GetBytes ( short value ) : byte[] | ||
GetBytes ( uint value ) : byte[] | ||
GetBytes ( ulong value ) : byte[] | ||
GetBytes ( ushort value ) : byte[] | ||
ToBase64UrlString ( byte value ) : string | ||
ToBase64UrlString ( byte value, int offset, int length ) : string | ||
ToBoolean ( byte value ) : bool | ||
ToBoolean ( byte value, int offset ) : bool | ||
ToChar ( byte value ) : char | ||
ToChar ( byte value, int offset ) : char | ||
ToDouble ( byte value ) : double | ||
ToDouble ( byte value, int offset ) : double | ||
ToHexString ( byte value ) : string |
バイト列を16進数表記の文字列に変換
|
|
ToHexString ( byte value, int offset, int length ) : string |
バイト列を16進数表記の文字列に変換
|
|
ToInt16 ( byte value ) : short | ||
ToInt16 ( byte value, int offset ) : short | ||
ToInt32 ( byte value ) : int | ||
ToInt32 ( byte value, int offset ) : int | ||
ToInt64 ( byte value ) : long | ||
ToInt64 ( byte value, int offset ) : long | ||
ToSingle ( byte value ) : float | ||
ToSingle ( byte value, int offset ) : float | ||
ToSizeString ( decimal b ) : string | ||
ToSizeString ( decimal b, string unit ) : string | ||
ToUInt16 ( byte value ) : ushort | ||
ToUInt16 ( byte value, int offset ) : ushort | ||
ToUInt32 ( byte value ) : uint | ||
ToUInt32 ( byte value, int offset ) : uint | ||
ToUInt64 ( byte value ) : ulong | ||
ToUInt64 ( byte value, int offset ) : ulong |
Method | Description | |
---|---|---|
GetHexValue ( int c ) : char | ||
GetReverse ( byte value, int offset, int length ) : byte[] | ||
Reverse ( byte value ) : void |
public static FromBase64UrlString ( string value ) : byte[] | ||
value | string | |
return | byte[] |
public static FromHexString ( string value ) : byte[] | ||
value | string | バイト配列に変換する文字列 |
return | byte[] |
public static FromSizeString ( string value ) : decimal | ||
value | string | |
return | decimal |
public static GetBytes ( bool value ) : byte[] | ||
value | bool | |
return | byte[] |
public static GetBytes ( char value ) : byte[] | ||
value | char | |
return | byte[] |
public static GetBytes ( double value ) : byte[] | ||
value | double | |
return | byte[] |
public static GetBytes ( float value ) : byte[] | ||
value | float | |
return | byte[] |
public static GetBytes ( int value ) : byte[] | ||
value | int | |
return | byte[] |
public static GetBytes ( long value ) : byte[] | ||
value | long | |
return | byte[] |
public static GetBytes ( short value ) : byte[] | ||
value | short | |
return | byte[] |
public static GetBytes ( uint value ) : byte[] | ||
value | uint | |
return | byte[] |
public static GetBytes ( ulong value ) : byte[] | ||
value | ulong | |
return | byte[] |
public static GetBytes ( ushort value ) : byte[] | ||
value | ushort | |
return | byte[] |
public static ToBase64UrlString ( byte value ) : string | ||
value | byte | |
return | string |
public static ToBase64UrlString ( byte value, int offset, int length ) : string | ||
value | byte | |
offset | int | |
length | int | |
return | string |
public static ToBoolean ( byte value ) : bool | ||
value | byte | |
return | bool |
public static ToBoolean ( byte value, int offset ) : bool | ||
value | byte | |
offset | int | |
return | bool |
public static ToChar ( byte value, int offset ) : char | ||
value | byte | |
offset | int | |
return | char |
public static ToDouble ( byte value ) : double | ||
value | byte | |
return | double |
public static ToDouble ( byte value, int offset ) : double | ||
value | byte | |
offset | int | |
return | double |
public static ToHexString ( byte value ) : string | ||
value | byte | 文字列に変換するバイト配列 |
return | string |
public static ToHexString ( byte value, int offset, int length ) : string | ||
value | byte | 文字列に変換するバイト配列 |
offset | int | |
length | int | |
return | string |
public static ToInt16 ( byte value, int offset ) : short | ||
value | byte | |
offset | int | |
return | short |
public static ToInt32 ( byte value, int offset ) : int | ||
value | byte | |
offset | int | |
return | int |
public static ToInt64 ( byte value, int offset ) : long | ||
value | byte | |
offset | int | |
return | long |
public static ToSingle ( byte value ) : float | ||
value | byte | |
return | float |
public static ToSingle ( byte value, int offset ) : float | ||
value | byte | |
offset | int | |
return | float |
public static ToSizeString ( decimal b ) : string | ||
b | decimal | |
return | string |
public static ToSizeString ( decimal b, string unit ) : string | ||
b | decimal | |
unit | string | |
return | string |
public static ToUInt16 ( byte value ) : ushort | ||
value | byte | |
return | ushort |
public static ToUInt16 ( byte value, int offset ) : ushort | ||
value | byte | |
offset | int | |
return | ushort |
public static ToUInt32 ( byte value, int offset ) : uint | ||
value | byte | |
offset | int | |
return | uint |
public static ToUInt64 ( byte value ) : ulong | ||
value | byte | |
return | ulong |
public static ToUInt64 ( byte value, int offset ) : ulong | ||
value | byte | |
offset | int | |
return | ulong |