UInt128.Explicit Opérateur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Explicit(UInt128 to UIntPtr) |
Convertit explicitement un entier non signé 128 bits en valeur UIntPtr . |
Explicit(UInt128 to UInt64) |
Convertit explicitement un entier non signé 128 bits en valeur UInt64 . |
Explicit(UInt128 to UInt32) |
Convertit explicitement un entier non signé 128 bits en valeur UInt32 . |
Explicit(UInt128 to UInt16) |
Convertit explicitement un entier non signé 128 bits en valeur UInt16 . |
Explicit(UInt128 to Single) |
Convertit explicitement un entier non signé 128 bits en valeur Single . |
Explicit(UInt128 to SByte) |
Convertit explicitement un entier non signé 128 bits en valeur SByte . |
Explicit(UInt128 to IntPtr) |
Convertit explicitement un entier non signé 128 bits en valeur IntPtr . |
Explicit(UInt128 to Int64) |
Convertit explicitement un entier non signé 128 bits en valeur Int64 . |
Explicit(UInt128 to Int32) |
Convertit explicitement un entier non signé 128 bits en valeur Int32 . |
Explicit(UInt128 to Int128) |
Convertit explicitement un entier non signé 128 bits en valeur Int128 . |
Explicit(UInt128 to Half) |
Convertit explicitement un entier non signé 128 bits en valeur Half . |
Explicit(UInt128 to Int16) |
Convertit explicitement un entier non signé 128 bits en valeur Int16 . |
Explicit(UInt128 to Decimal) |
Convertit explicitement un entier non signé 128 bits en valeur Decimal . |
Explicit(Decimal to UInt128) |
Convertit explicitement une Decimal valeur en entier non signé 128 bits. |
Explicit(UInt128 to Double) |
Convertit explicitement un entier non signé 128 bits en valeur Double . |
Explicit(Int16 to UInt128) |
Convertit explicitement une Int16 valeur en entier non signé 128 bits. |
Explicit(Int32 to UInt128) |
Convertit explicitement une Int32 valeur en entier non signé 128 bits. |
Explicit(Int64 to UInt128) |
Convertit explicitement une Int64 valeur en entier non signé 128 bits. |
Explicit(Double to UInt128) |
Convertit explicitement une Double valeur en entier non signé 128 bits. |
Explicit(SByte to UInt128) |
Convertit explicitement une SByte valeur en entier non signé 128 bits. |
Explicit(Single to UInt128) |
Convertit explicitement une Single valeur en entier non signé 128 bits. |
Explicit(UInt128 to Byte) |
Convertit explicitement un entier non signé 128 bits en valeur Byte . |
Explicit(UInt128 to Char) |
Convertit explicitement un entier non signé 128 bits en valeur Char . |
Explicit(IntPtr to UInt128) |
Convertit explicitement une IntPtr valeur en entier non signé 128 bits. |
Explicit(UInt128 to UIntPtr)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Important
Cette API n’est pas conforme CLS.
Convertit explicitement un entier non signé 128 bits en valeur UIntPtr .
public:
static explicit operator UIntPtr(UInt128 value);
[System.CLSCompliant(false)]
public static explicit operator UIntPtr (UInt128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : UInt128 -> unativeint
Public Shared Narrowing Operator CType (value As UInt128) As UIntPtr
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
unativeint
value
converti en UIntPtr.
- Attributs
S’applique à
Explicit(UInt128 to UInt64)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Important
Cette API n’est pas conforme CLS.
Convertit explicitement un entier non signé 128 bits en valeur UInt64 .
public:
static explicit operator System::UInt64(UInt128 value);
[System.CLSCompliant(false)]
public static explicit operator ulong (UInt128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : UInt128 -> uint64
Public Shared Narrowing Operator CType (value As UInt128) As ULong
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en UInt64.
- Attributs
S’applique à
Explicit(UInt128 to UInt32)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Important
Cette API n’est pas conforme CLS.
Convertit explicitement un entier non signé 128 bits en valeur UInt32 .
public:
static explicit operator System::UInt32(UInt128 value);
[System.CLSCompliant(false)]
public static explicit operator uint (UInt128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : UInt128 -> uint32
Public Shared Narrowing Operator CType (value As UInt128) As UInteger
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en UInt32.
- Attributs
S’applique à
Explicit(UInt128 to UInt16)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Important
Cette API n’est pas conforme CLS.
Convertit explicitement un entier non signé 128 bits en valeur UInt16 .
public:
static explicit operator System::UInt16(UInt128 value);
[System.CLSCompliant(false)]
public static explicit operator ushort (UInt128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : UInt128 -> uint16
Public Shared Narrowing Operator CType (value As UInt128) As UShort
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en UInt16.
- Attributs
S’applique à
Explicit(UInt128 to Single)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Single .
public:
static explicit operator float(UInt128 value);
public static explicit operator float (UInt128 value);
static member op_Explicit : UInt128 -> single
Public Shared Narrowing Operator CType (value As UInt128) As Single
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Single.
S’applique à
Explicit(UInt128 to SByte)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Important
Cette API n’est pas conforme CLS.
Convertit explicitement un entier non signé 128 bits en valeur SByte .
public:
static explicit operator System::SByte(UInt128 value);
[System.CLSCompliant(false)]
public static explicit operator sbyte (UInt128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : UInt128 -> sbyte
Public Shared Narrowing Operator CType (value As UInt128) As SByte
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en SByte.
- Attributs
S’applique à
Explicit(UInt128 to IntPtr)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur IntPtr .
public:
static explicit operator IntPtr(UInt128 value);
public static explicit operator IntPtr (UInt128 value);
static member op_Explicit : UInt128 -> nativeint
Public Shared Narrowing Operator CType (value As UInt128) As IntPtr
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
nativeint
value
converti en IntPtr.
S’applique à
Explicit(UInt128 to Int64)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Int64 .
public:
static explicit operator long(UInt128 value);
public static explicit operator long (UInt128 value);
static member op_Explicit : UInt128 -> int64
Public Shared Narrowing Operator CType (value As UInt128) As Long
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Int64.
S’applique à
Explicit(UInt128 to Int32)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Int32 .
public:
static explicit operator int(UInt128 value);
public static explicit operator int (UInt128 value);
static member op_Explicit : UInt128 -> int
Public Shared Narrowing Operator CType (value As UInt128) As Integer
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Int32.
S’applique à
Explicit(UInt128 to Int128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Important
Cette API n’est pas conforme CLS.
Convertit explicitement un entier non signé 128 bits en valeur Int128 .
public:
static explicit operator Int128(UInt128 value);
[System.CLSCompliant(false)]
public static explicit operator Int128 (UInt128 value);
[<System.CLSCompliant(false)>]
static member op_Explicit : UInt128 -> Int128
Public Shared Narrowing Operator CType (value As UInt128) As Int128
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Int128.
- Attributs
S’applique à
Explicit(UInt128 to Half)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Half .
public:
static explicit operator Half(UInt128 value);
public static explicit operator Half (UInt128 value);
static member op_Explicit : UInt128 -> Half
Public Shared Narrowing Operator CType (value As UInt128) As Half
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Half.
S’applique à
Explicit(UInt128 to Int16)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Int16 .
public:
static explicit operator short(UInt128 value);
public static explicit operator short (UInt128 value);
static member op_Explicit : UInt128 -> int16
Public Shared Narrowing Operator CType (value As UInt128) As Short
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Int16.
S’applique à
Explicit(UInt128 to Decimal)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Decimal .
public:
static explicit operator System::Decimal(UInt128 value);
public static explicit operator decimal (UInt128 value);
static member op_Explicit : UInt128 -> decimal
Public Shared Narrowing Operator CType (value As UInt128) As Decimal
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Decimal.
S’applique à
Explicit(Decimal to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement une Decimal valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(System::Decimal value);
public static explicit operator UInt128 (decimal value);
static member op_Explicit : decimal -> UInt128
Public Shared Narrowing Operator CType (value As Decimal) As UInt128
Paramètres
- value
- Decimal
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.
S’applique à
Explicit(UInt128 to Double)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Double .
public:
static explicit operator double(UInt128 value);
public static explicit operator double (UInt128 value);
static member op_Explicit : UInt128 -> double
Public Shared Narrowing Operator CType (value As UInt128) As Double
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Double.
S’applique à
Explicit(Int16 to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement une Int16 valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(short value);
public static explicit operator UInt128 (short value);
static member op_Explicit : int16 -> UInt128
Public Shared Narrowing Operator CType (value As Short) As UInt128
Paramètres
- value
- Int16
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.
S’applique à
Explicit(Int32 to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement une Int32 valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(int value);
public static explicit operator UInt128 (int value);
static member op_Explicit : int -> UInt128
Public Shared Narrowing Operator CType (value As Integer) As UInt128
Paramètres
- value
- Int32
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.
S’applique à
Explicit(Int64 to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement une Int64 valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(long value);
public static explicit operator UInt128 (long value);
static member op_Explicit : int64 -> UInt128
Public Shared Narrowing Operator CType (value As Long) As UInt128
Paramètres
- value
- Int64
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.
S’applique à
Explicit(Double to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement une Double valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(double value);
public static explicit operator UInt128 (double value);
static member op_Explicit : double -> UInt128
Public Shared Narrowing Operator CType (value As Double) As UInt128
Paramètres
- value
- Double
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.
S’applique à
Explicit(SByte to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Important
Cette API n’est pas conforme CLS.
Convertit explicitement une SByte valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(System::SByte value);
[System.CLSCompliant(false)]
public static explicit operator UInt128 (sbyte value);
[<System.CLSCompliant(false)>]
static member op_Explicit : sbyte -> UInt128
Public Shared Narrowing Operator CType (value As SByte) As UInt128
Paramètres
- value
- SByte
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.
- Attributs
S’applique à
Explicit(Single to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement une Single valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(float value);
public static explicit operator UInt128 (float value);
static member op_Explicit : single -> UInt128
Public Shared Narrowing Operator CType (value As Single) As UInt128
Paramètres
- value
- Single
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.
S’applique à
Explicit(UInt128 to Byte)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Byte .
public:
static explicit operator System::Byte(UInt128 value);
public static explicit operator byte (UInt128 value);
static member op_Explicit : UInt128 -> byte
Public Shared Narrowing Operator CType (value As UInt128) As Byte
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Byte.
S’applique à
Explicit(UInt128 to Char)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement un entier non signé 128 bits en valeur Char .
public:
static explicit operator char(UInt128 value);
public static explicit operator char (UInt128 value);
static member op_Explicit : UInt128 -> char
Public Shared Narrowing Operator CType (value As UInt128) As Char
Paramètres
- value
- UInt128
La valeur à convertir.
Retours
value
converti en Char.
S’applique à
Explicit(IntPtr to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
Convertit explicitement une IntPtr valeur en entier non signé 128 bits.
public:
static explicit operator UInt128(IntPtr value);
public static explicit operator UInt128 (IntPtr value);
static member op_Explicit : nativeint -> UInt128
Public Shared Narrowing Operator CType (value As IntPtr) As UInt128
Paramètres
- value
-
IntPtr
nativeint
La valeur à convertir.
Retours
value
converti en entier non signé 128 bits.