SPUtility.HexStringToByteArray method
Converte uma cadeia de caracteres hexadecimal como "0x1234abcd" para a matriz de bytes que ele representa.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
Public Shared Function HexStringToByteArray ( _
hexValue As String _
) As Byte()
'Uso
Dim hexValue As String
Dim returnValue As Byte()
returnValue = SPUtility.HexStringToByteArray(hexValue)
public static byte[] HexStringToByteArray(
string hexValue
)
Parâmetros
hexValue
Type: System.StringA cadeia de caracteres hexadecimal a ser convertido.
Valor retornado
Type: []
Uma matriz de bytes contendo a representação binária do [hexValue].