Метод | Описание | |
---|---|---|
Base32Decode ( [ base32String, [ |
Tries to convert base32 string to a byte array.
|
|
Base32DecodeGuid ( [ base32String, [ |
Tries to convert base32 string to a GUID.
|
|
Base32DecodeString ( [ base32String, [ |
Tries to convert base32 string to a string.
|
|
TryBase32Decode ( [ base32String, [ buffer, int offset, int length = -1, [ |
Tries to convert base32 string to array of bytes.
|
|
TryBase32Decode ( [ base32String, byte &outputBytes, [ |
Tries to convert base32 string to array of bytes.
|
|
TryBase32DecodeGuid ( [ base32String, System.Guid &output, [ |
Tries to convert base32 string to a GUID.
|
|
TryBase32DecodeString ( [ base32String, string &output, [ |
Tries to convert base32 string to string.
|
Метод | Описание | |
---|---|---|
Base32Encode ( [ input, [ |
||
Base32Encode ( this guid, [ |
public static Base32Decode ( [ base32String, [ |
||
base32String | [ | Base32 string to convert. |
digits | [ |
The digits. |
comparer | [ |
The character comparer (defaults to |
Результат | byte[] |
public static Base32DecodeGuid ( [ base32String, [ |
||
base32String | [ | Base32 string to convert. |
digits | [ |
The digits. |
comparer | [ |
The character comparer (defaults to |
Результат | System.Guid |
public static Base32DecodeString ( [ base32String, [ |
||
base32String | [ | Base32 string to convert. |
digits | [ |
The digits. |
comparer | [ |
The character comparer (defaults to |
Результат | string |
public static TryBase32Decode ( [ base32String, [ buffer, int offset, int length = -1, [ |
||
base32String | [ | Base32 string to convert. |
buffer | [ | The buffer to fill. |
offset | int | The offset in the buffer. |
length | int | The length (if set will ensure that length bytes are filled). |
digits | [ |
The digits. |
comparer | [ |
The character comparer (defaults to |
Результат | bool |
public static TryBase32Decode ( [ base32String, byte &outputBytes, [ |
||
base32String | [ | Base32 string to convert. |
outputBytes | byte | The output bytes. |
digits | [ |
The digits. |
comparer | [ |
The character comparer (defaults to |
Результат | bool |
public static TryBase32DecodeGuid ( [ base32String, System.Guid &output, [ |
||
base32String | [ | Base32 string to convert. |
output | System.Guid | The output. |
digits | [ |
The digits. |
comparer | [ |
The character comparer (defaults to |
Результат | bool |
public static TryBase32DecodeString ( [ base32String, string &output, [ |
||
base32String | [ | Base32 string to convert. |
output | string | The output. |
digits | [ |
The digits. |
comparer | [ |
The character comparer (defaults to |
Результат | bool |