UtilEncryptionHexadecimalDecode Method
Decodes a string using Hexadecimal 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 HexadecimalDecode(
string str,
string separator = "",
Encoding enc = null
)
Public Shared Function HexadecimalDecode (
str As String,
Optional separator As String = "",
Optional enc As Encoding = Nothing
) As String
Dim str As String
Dim separator As String
Dim enc As Encoding
Dim returnValue As String
returnValue = UtilEncryption.HexadecimalDecode(str,
separator, enc)
public:
static String^ HexadecimalDecode(
String^ str,
String^ separator = L"",
Encoding^ enc = nullptr
)
static member HexadecimalDecode :
str : string *
?separator : string *
?enc : Encoding
(* Defaults:
let _separator = defaultArg separator ""
let _enc = defaultArg enc null
*)
-> string
No code example is currently available or this language may not be supported.
- str String
-
The string to decode.
- separator String (Optional)
-
The string used to separate Hexadecimal sequences.
- enc Encoding (Optional)
-
The text Encoding.
String
The decoded string.
This is a code example.
No code example is currently available or this language may not be supported.
Dim decoded As String = HexadecimalDecode("48 65 6c 6c 6f 20 57 6f 72 6c 64 21", separator:=" ")
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.