Int128.Explicit Operator
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
Explicit(Single to Int128) |
Konvertiert einen Single Wert explizit in eine 128-Bit-Ganzzahl mit Vorzeichen. |
Explicit(Int128 to UIntPtr) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UIntPtr Wert. |
Explicit(Int128 to UInt64) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt64 Wert. |
Explicit(Int128 to UInt32) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt32 Wert. |
Explicit(Int128 to UInt16) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt16 Wert. |
Explicit(Int128 to UInt128) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt128 Wert. |
Explicit(Int128 to Single) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Single Wert. |
Explicit(Int128 to SByte) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen SByte Wert. |
Explicit(Int128 to IntPtr) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen IntPtr Wert. |
Explicit(Int128 to Int32) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Int32 Wert. |
Explicit(Int128 to Int16) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Int16 Wert. |
Explicit(Int128 to Half) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Half Wert. |
Explicit(Int128 to Double) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Double Wert. |
Explicit(Int128 to Decimal) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Decimal Wert. |
Explicit(Int128 to Char) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Char Wert. |
Explicit(Int128 to Byte) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Byte Wert. |
Explicit(Double to Int128) |
Konvertiert einen Double Wert explizit in eine 128-Bit-Ganzzahl mit Vorzeichen. |
Explicit(Decimal to Int128) |
Konvertiert einen Decimal Wert explizit in eine 128-Bit-Ganzzahl mit Vorzeichen. |
Explicit(Int128 to Int64) |
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Int64 Wert. |
Explicit(Single to Int128)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert einen Single Wert explizit in eine 128-Bit-Ganzzahl mit Vorzeichen.
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
Parameter
- value
- Single
Der zu konvertierende Wert.
Gibt zurück
value
in eine 128-Bit-Ganzzahl mit Vorzeichen konvertiert.
Gilt für:
Explicit(Int128 to UIntPtr)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Wichtig
Diese API ist nicht CLS-kompatibel.
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UIntPtr Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
unativeint
value
, konvertiert in einen UIntPtr.
- Attribute
Gilt für:
Explicit(Int128 to UInt64)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Wichtig
Diese API ist nicht CLS-kompatibel.
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt64 Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen UInt64.
- Attribute
Gilt für:
Explicit(Int128 to UInt32)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Wichtig
Diese API ist nicht CLS-kompatibel.
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt32 Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen UInt32.
- Attribute
Gilt für:
Explicit(Int128 to UInt16)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Wichtig
Diese API ist nicht CLS-kompatibel.
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt16 Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen UInt16.
- Attribute
Gilt für:
Explicit(Int128 to UInt128)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Wichtig
Diese API ist nicht CLS-kompatibel.
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen UInt128 Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen UInt128.
- Attribute
Gilt für:
Explicit(Int128 to Single)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Single Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Single.
Gilt für:
Explicit(Int128 to SByte)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Wichtig
Diese API ist nicht CLS-kompatibel.
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen SByte Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen SByte.
- Attribute
Gilt für:
Explicit(Int128 to IntPtr)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen IntPtr Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
nativeint
value
, konvertiert in einen IntPtr.
Gilt für:
Explicit(Int128 to Int32)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Int32 Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Int32.
Gilt für:
Explicit(Int128 to Int16)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Int16 Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Int16.
Gilt für:
Explicit(Int128 to Half)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Half Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Half.
Gilt für:
Explicit(Int128 to Double)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Double Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Double.
Gilt für:
Explicit(Int128 to Decimal)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Decimal Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Decimal.
Gilt für:
Explicit(Int128 to Char)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Char Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Char.
Gilt für:
Explicit(Int128 to Byte)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Byte Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Byte.
Gilt für:
Explicit(Double to Int128)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert einen Double Wert explizit in eine 128-Bit-Ganzzahl mit Vorzeichen.
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
Parameter
- value
- Double
Der zu konvertierende Wert.
Gibt zurück
value
in eine 128-Bit-Ganzzahl mit Vorzeichen konvertiert.
Gilt für:
Explicit(Decimal to Int128)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert einen Decimal Wert explizit in eine 128-Bit-Ganzzahl mit Vorzeichen.
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
Parameter
- value
- Decimal
Der zu konvertierende Wert.
Gibt zurück
value
in eine 128-Bit-Ganzzahl mit Vorzeichen konvertiert.
Gilt für:
Explicit(Int128 to Int64)
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
- Quelle:
- Int128.cs
Konvertiert explizit eine 128-Bit-Ganzzahl mit Vorzeichen in einen Int64 Wert.
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
Parameter
- value
- Int128
Der zu konvertierende Wert.
Gibt zurück
value
, konvertiert in einen Int64.