Int128.Explicit Operador
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í.
Sobrecargas
Explicit(Single to Int128) |
Convierte explícitamente un Single valor en un entero de 128 bits con signo. |
Explicit(Int128 to UIntPtr) |
Convierte explícitamente un entero de 128 bits con signo en un UIntPtr valor . |
Explicit(Int128 to UInt64) |
Convierte explícitamente un entero de 128 bits con signo en un UInt64 valor . |
Explicit(Int128 to UInt32) |
Convierte explícitamente un entero de 128 bits con signo en un UInt32 valor . |
Explicit(Int128 to UInt16) |
Convierte explícitamente un entero de 128 bits con signo en un UInt16 valor . |
Explicit(Int128 to UInt128) |
Convierte explícitamente un entero de 128 bits con signo en un UInt128 valor . |
Explicit(Int128 to Single) |
Convierte explícitamente un entero de 128 bits con signo en un Single valor . |
Explicit(Int128 to SByte) |
Convierte explícitamente un entero de 128 bits con signo en un SByte valor . |
Explicit(Int128 to IntPtr) |
Convierte explícitamente un entero de 128 bits con signo en un IntPtr valor . |
Explicit(Int128 to Int32) |
Convierte explícitamente un entero de 128 bits con signo en un Int32 valor . |
Explicit(Int128 to Int16) |
Convierte explícitamente un entero de 128 bits con signo en un Int16 valor . |
Explicit(Int128 to Half) |
Convierte explícitamente un entero de 128 bits con signo en un Half valor . |
Explicit(Int128 to Double) |
Convierte explícitamente un entero de 128 bits con signo en un Double valor . |
Explicit(Int128 to Decimal) |
Convierte explícitamente un entero de 128 bits con signo en un Decimal valor . |
Explicit(Int128 to Char) |
Convierte explícitamente un entero de 128 bits con signo en un Char valor . |
Explicit(Int128 to Byte) |
Convierte explícitamente un entero de 128 bits con signo en un Byte valor . |
Explicit(Double to Int128) |
Convierte explícitamente un Double valor en un entero de 128 bits con signo. |
Explicit(Decimal to Int128) |
Convierte explícitamente un Decimal valor en un entero de 128 bits con signo. |
Explicit(Int128 to Int64) |
Convierte explícitamente un entero de 128 bits con signo en un Int64 valor . |
Explicit(Single to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un Single valor en un entero de 128 bits con signo.
public:
static explicit operator Int128(float value);
public static explicit operator Int128 (float value);
static member op_Explicit : single -> Int128
Public Shared Narrowing Operator CType (value As Single) As Int128
Parámetros
- value
- Single
Valor que se va a convertir.
Devoluciones
value
convertido en un entero de 128 bits con signo.
Se aplica a
Explicit(Int128 to UIntPtr)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Importante
Esta API no es conforme a CLS.
Convierte explícitamente un entero de 128 bits con signo en un UIntPtr valor .
public:
static explicit operator UIntPtr(Int128 value);
[System.CLSCompliant(false)]
public static explicit operator UIntPtr (Int128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : Int128 -> unativeint
Public Shared Narrowing Operator CType (value As Int128) As UIntPtr
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
unativeint
value
convertido en UIntPtr.
- Atributos
Se aplica a
Explicit(Int128 to UInt64)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Importante
Esta API no es conforme a CLS.
Convierte explícitamente un entero de 128 bits con signo en un UInt64 valor .
public:
static explicit operator System::UInt64(Int128 value);
[System.CLSCompliant(false)]
public static explicit operator ulong (Int128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : Int128 -> uint64
Public Shared Narrowing Operator CType (value As Int128) As ULong
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en UInt64.
- Atributos
Se aplica a
Explicit(Int128 to UInt32)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Importante
Esta API no es conforme a CLS.
Convierte explícitamente un entero de 128 bits con signo en un UInt32 valor .
public:
static explicit operator System::UInt32(Int128 value);
[System.CLSCompliant(false)]
public static explicit operator uint (Int128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : Int128 -> uint32
Public Shared Narrowing Operator CType (value As Int128) As UInteger
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en UInt32.
- Atributos
Se aplica a
Explicit(Int128 to UInt16)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Importante
Esta API no es conforme a CLS.
Convierte explícitamente un entero de 128 bits con signo en un UInt16 valor .
public:
static explicit operator System::UInt16(Int128 value);
[System.CLSCompliant(false)]
public static explicit operator ushort (Int128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : Int128 -> uint16
Public Shared Narrowing Operator CType (value As Int128) As UShort
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en UInt16.
- Atributos
Se aplica a
Explicit(Int128 to UInt128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Importante
Esta API no es conforme a CLS.
Convierte explícitamente un entero de 128 bits con signo en un UInt128 valor .
public:
static explicit operator UInt128(Int128 value);
[System.CLSCompliant(false)]
public static explicit operator UInt128 (Int128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : Int128 -> UInt128
Public Shared Narrowing Operator CType (value As Int128) As UInt128
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en UInt128.
- Atributos
Se aplica a
Explicit(Int128 to Single)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Single valor .
public:
static explicit operator float(Int128 value);
public static explicit operator float (Int128 value);
static member op_Explicit : Int128 -> single
Public Shared Narrowing Operator CType (value As Int128) As Single
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Single.
Se aplica a
Explicit(Int128 to SByte)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Importante
Esta API no es conforme a CLS.
Convierte explícitamente un entero de 128 bits con signo en un SByte valor .
public:
static explicit operator System::SByte(Int128 value);
[System.CLSCompliant(false)]
public static explicit operator sbyte (Int128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : Int128 -> sbyte
Public Shared Narrowing Operator CType (value As Int128) As SByte
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en SByte.
- Atributos
Se aplica a
Explicit(Int128 to IntPtr)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un IntPtr valor .
public:
static explicit operator IntPtr(Int128 value);
public static explicit operator IntPtr (Int128 value);
static member op_Explicit : Int128 -> nativeint
Public Shared Narrowing Operator CType (value As Int128) As IntPtr
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
nativeint
value
convertido en IntPtr.
Se aplica a
Explicit(Int128 to Int32)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Int32 valor .
public:
static explicit operator int(Int128 value);
public static explicit operator int (Int128 value);
static member op_Explicit : Int128 -> int
Public Shared Narrowing Operator CType (value As Int128) As Integer
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Int32.
Se aplica a
Explicit(Int128 to Int16)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Int16 valor .
public:
static explicit operator short(Int128 value);
public static explicit operator short (Int128 value);
static member op_Explicit : Int128 -> int16
Public Shared Narrowing Operator CType (value As Int128) As Short
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Int16.
Se aplica a
Explicit(Int128 to Half)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Half valor .
public:
static explicit operator Half(Int128 value);
public static explicit operator Half (Int128 value);
static member op_Explicit : Int128 -> Half
Public Shared Narrowing Operator CType (value As Int128) As Half
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Half.
Se aplica a
Explicit(Int128 to Double)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Double valor .
public:
static explicit operator double(Int128 value);
public static explicit operator double (Int128 value);
static member op_Explicit : Int128 -> double
Public Shared Narrowing Operator CType (value As Int128) As Double
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Double.
Se aplica a
Explicit(Int128 to Decimal)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Decimal valor .
public:
static explicit operator System::Decimal(Int128 value);
public static explicit operator decimal (Int128 value);
static member op_Explicit : Int128 -> decimal
Public Shared Narrowing Operator CType (value As Int128) As Decimal
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Decimal.
Se aplica a
Explicit(Int128 to Char)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Char valor .
public:
static explicit operator char(Int128 value);
public static explicit operator char (Int128 value);
static member op_Explicit : Int128 -> char
Public Shared Narrowing Operator CType (value As Int128) As Char
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Char.
Se aplica a
Explicit(Int128 to Byte)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Byte valor .
public:
static explicit operator System::Byte(Int128 value);
public static explicit operator byte (Int128 value);
static member op_Explicit : Int128 -> byte
Public Shared Narrowing Operator CType (value As Int128) As Byte
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Byte.
Se aplica a
Explicit(Double to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un Double valor en un entero de 128 bits con signo.
public:
static explicit operator Int128(double value);
public static explicit operator Int128 (double value);
static member op_Explicit : double -> Int128
Public Shared Narrowing Operator CType (value As Double) As Int128
Parámetros
- value
- Double
Valor que se va a convertir.
Devoluciones
value
convertido en un entero de 128 bits con signo.
Se aplica a
Explicit(Decimal to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un Decimal valor en un entero de 128 bits con signo.
public:
static explicit operator Int128(System::Decimal value);
public static explicit operator Int128 (decimal value);
static member op_Explicit : decimal -> Int128
Public Shared Narrowing Operator CType (value As Decimal) As Int128
Parámetros
- value
- Decimal
Valor que se va a convertir.
Devoluciones
value
convertido en un entero de 128 bits con signo.
Se aplica a
Explicit(Int128 to Int64)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Convierte explícitamente un entero de 128 bits con signo en un Int64 valor .
public:
static explicit operator long(Int128 value);
public static explicit operator long (Int128 value);
static member op_Explicit : Int128 -> int64
Public Shared Narrowing Operator CType (value As Int128) As Long
Parámetros
- value
- Int128
Valor que se va a convertir.
Devoluciones
value
convertido en Int64.