Conversions.ToUInteger Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Convierte el objeto especificado en un valor Uint
.
Sobrecargas
ToUInteger(Object) |
Convierte un objeto en un valor |
ToUInteger(String) |
Convierte una cadena en un valor |
ToUInteger(Object)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Importante
Esta API no es conforme a CLS.
- Alternativa conforme a CLS
- Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(Object)
Convierte un objeto en un valor Uint
.
public:
static System::UInt32 ToUInteger(System::Object ^ Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (object Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (object? Value);
[<System.CLSCompliant(false)>]
static member ToUInteger : obj -> uint32
Public Shared Function ToUInteger (Value As Object) As UInteger
Parámetros
- Value
- Object
Objeto que se va a convertir.
Devoluciones
El valor de Uint
del objeto.
- Atributos
Se aplica a
ToUInteger(String)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Importante
Esta API no es conforme a CLS.
- Alternativa conforme a CLS
- Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(String)
Convierte una cadena en un valor Uint
.
public:
static System::UInt32 ToUInteger(System::String ^ Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (string Value);
[System.CLSCompliant(false)]
public static uint ToUInteger (string? Value);
[<System.CLSCompliant(false)>]
static member ToUInteger : string -> uint32
Public Shared Function ToUInteger (Value As String) As UInteger
Parámetros
- Value
- String
Cadena que se va a convertir.
Devoluciones
Valor Uint
de la cadena.
- Atributos