UtilEncryptionBase36Encode Method
Encodes a number using Base36 codification.
Namespace: DevCase.Core.Security.Cryptography.EncryptionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string Base36Encode(
long value
)
Public Shared Function Base36Encode (
value As Long
) As String
Dim value As Long
Dim returnValue As String
returnValue = UtilEncryption.Base36Encode(value)
public:
static String^ Base36Encode(
long long value
)
static member Base36Encode :
value : int64 -> string
No code example is currently available or this language may not be supported.
- value Int64
-
The number to encode.
String
The encoded string.
This is a code example.
No code example is currently available or this language may not be supported.
Dim encoded As String = Base36Encode(1234567890) ' KF12OI
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.