| ExtensionMethodsParseHexString Method |
Convert a hex string to byte array
Namespace:
SanteDB.Core.Model
Assembly:
SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax public static byte[] ParseHexString(
this string hexString
)
<ExtensionAttribute>
Public Shared Function ParseHexString (
hexString As String
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ ParseHexString(
String^ hexString
)
[<ExtensionAttribute>]
static member ParseHexString :
hexString : string -> byte[]
Parameters
- hexString
- Type: SystemString
[Missing <param name="hexString"/> documentation for "M:SanteDB.Core.Model.ExtensionMethods.ParseHexString(System.String)"]
Return Value
Type:
Byte[Missing <returns> documentation for "M:SanteDB.Core.Model.ExtensionMethods.ParseHexString(System.String)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also