System::BitConverter::ToString método
BitConverter::ToString(const ArrayPtr<uint8_t>&, bool, const String&) method
Convierte todos los valores del arreglo de bytes especificado a su representación en cadena hexadecimal. El caso de las letras a usar en la notación hexadecimal y el separador insertado entre cada par de bytes vecinos se especifican mediante los argumentos correspondientes.
static String System::BitConverter::ToString(const ArrayPtr<uint8_t> &value, bool uppercase=true, const String &separator=u"-")
| Parámetro | Tipo | Descripción |
|---|---|---|
| value | const ArrayPtr<uint8_t>& | Array que contiene bytes para convertir |
| mayúsculas | bool | Especifica el caso de las letras a usar en la representación hexadecimal resultante |
| separador | const String& | Una cadena utilizada como separador insertado entre cada par de bytes adyacentes en la cadena resultante |
ReturnValue
String containing hexadecimal representation of the specified byte array
Ver también
- Class String
- Typedef ArrayPtr
- Class BitConverter
- Namespace System
- Library Aspose.Page for C++
BitConverter::ToString(const ArrayPtr<uint8_t>&, int) method
Convierte los valores del arreglo de bytes especificado a su representación en cadena hexadecimal a partir del índice especificado.
static String System::BitConverter::ToString(const ArrayPtr<uint8_t> &value, int startIndex)
| Parámetro | Tipo | Descripción |
|---|---|---|
| value | const ArrayPtr<uint8_t>& | Array que contiene bytes para convertir |
| startIndex | int | Índice en la matriz especificada en el que comenzar a convertir |
ReturnValue
String containing hexadecimal representation of the specified range of elements of the specified array
Ver también
- Class String
- Typedef ArrayPtr
- Class BitConverter
- Namespace System
- Library Aspose.Page for C++
BitConverter::ToString(const ArrayPtr<uint8_t>&, int, int) method
Convierte un rango de valores del arreglo de bytes especificado a su representación en cadena hexadecimal.
static String System::BitConverter::ToString(const ArrayPtr<uint8_t> &value, int startIndex, int length)
| Parámetro | Tipo | Descripción |
|---|---|---|
| value | const ArrayPtr<uint8_t>& | Array que contiene bytes para convertir |
| startIndex | int | Índice en la matriz especificada en el que comienza el rango de los elementos de la matriz de bytes a convertir |
| longitud | int | La longitud del rango de los elementos de la matriz de bytes a convertir |
ReturnValue
String containing hexadecimal representation of the specified range of elements of the specified array
Ver también
- Class String
- Typedef ArrayPtr
- Class BitConverter
- Namespace System
- Library Aspose.Page for C++