StringExtensions Methods
The StringExtensions type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() ![]() |
AsNumeric |
returns the numeric encoded type string back to characters (culture sensitive).
if the words are short enough one can save them as an int64 making it simpler for the garbage collector
|
![]() ![]() |
AsSqlChecksum |
Generate sql like checksum value without hashing
|
![]() ![]() |
FromNumeric(String) |
round trips the numeric encoded string back to it's original
|
![]() ![]() |
FromNumeric(IEnumerable<(Of <<'(UInt64>)>>)) |
generate a string from an array of numeric values
|
![]() ![]() |
TryAsNumeric(String, String%, UInt64%) |
convert the value as a numeric string,
if short enough you will also get the int64 value however for longer text than a few characters you will need to use string.TryAsNumeric(out IEnumerable<ulong> longArray)
|
![]() ![]() |
TryAsNumeric(String, Nullable<(Of <<'(IEnumerable<(Of <<'(UInt64>)>>)>)>>)%) |
Tries to convert the values as a
a IEnumerable<ulong> containing the ciphered text
|