del método SPUtility.HexStringToByteArray
Convierte una cadena hexadecimal como "0x1234abcd" en la matriz de bytes que representa.
Espacio de nombres: Microsoft.SharePoint.Utilities
Ensamblado: Microsoft.SharePoint (en Microsoft.SharePoint.dll)
Sintaxis
'Declaración
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
Tipo: System.StringLa cadena hexadecimal que se va a convertir.
Valor devuelto
Tipo: []
Una matriz de bytes que contiene la representación binaria de [hexValue].