Int128.Implicit Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Implicit(SByte to Int128) |
Implicitly converts a SByte value to a 128-bit signed integer. |
Implicit(UInt64 to Int128) |
Implicitly converts a UInt64 value to a 128-bit signed integer. |
Implicit(UInt32 to Int128) |
Implicitly converts a UInt32 value to a 128-bit signed integer. |
Implicit(UInt16 to Int128) |
Implicitly converts a UInt16 value to a 128-bit signed integer. |
Implicit(IntPtr to Int128) |
Implicitly converts a IntPtr value to a 128-bit signed integer. |
Implicit(UIntPtr to Int128) |
Implicitly converts a UIntPtr value to a 128-bit signed integer. |
Implicit(Int32 to Int128) |
Implicitly converts a Int32 value to a 128-bit signed integer. |
Implicit(Int16 to Int128) |
Implicitly converts a Int16 value to a 128-bit signed integer. |
Implicit(Char to Int128) |
Implicitly converts a Char value to a 128-bit signed integer. |
Implicit(Byte to Int128) |
Implicitly converts a Byte value to a 128-bit signed integer. |
Implicit(Int64 to Int128) |
Implicitly converts a Int64 value to a 128-bit signed integer. |
Implicit(SByte to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Important
This API is not CLS-compliant.
Implicitly converts a SByte value to a 128-bit signed integer.
public:
static operator Int128(System::SByte value);
[System.CLSCompliant(false)]
public static implicit operator Int128 (sbyte value);
[<System.CLSCompliant(false)>]
static member op_Implicit : sbyte -> Int128
Public Shared Widening Operator CType (value As SByte) As Int128
Parameters
- value
- SByte
The value to convert.
Returns
value
converted to a 128-bit signed integer.
- Attributes
Applies to
Implicit(UInt64 to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Important
This API is not CLS-compliant.
Implicitly converts a UInt64 value to a 128-bit signed integer.
public:
static operator Int128(System::UInt64 value);
[System.CLSCompliant(false)]
public static implicit operator Int128 (ulong value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint64 -> Int128
Public Shared Widening Operator CType (value As ULong) As Int128
Parameters
- value
- UInt64
The value to convert.
Returns
value
converted to a 128-bit signed integer.
- Attributes
Applies to
Implicit(UInt32 to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Important
This API is not CLS-compliant.
Implicitly converts a UInt32 value to a 128-bit signed integer.
public:
static operator Int128(System::UInt32 value);
[System.CLSCompliant(false)]
public static implicit operator Int128 (uint value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint32 -> Int128
Public Shared Widening Operator CType (value As UInteger) As Int128
Parameters
- value
- UInt32
The value to convert.
Returns
value
converted to a 128-bit signed integer.
- Attributes
Applies to
Implicit(UInt16 to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Important
This API is not CLS-compliant.
Implicitly converts a UInt16 value to a 128-bit signed integer.
public:
static operator Int128(System::UInt16 value);
[System.CLSCompliant(false)]
public static implicit operator Int128 (ushort value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint16 -> Int128
Public Shared Widening Operator CType (value As UShort) As Int128
Parameters
- value
- UInt16
The value to convert.
Returns
value
converted to a 128-bit signed integer.
- Attributes
Applies to
Implicit(IntPtr to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Implicitly converts a IntPtr value to a 128-bit signed integer.
public:
static operator Int128(IntPtr value);
public static implicit operator Int128 (IntPtr value);
static member op_Implicit : nativeint -> Int128
Public Shared Widening Operator CType (value As IntPtr) As Int128
Parameters
- value
-
IntPtr
nativeint
The value to convert.
Returns
value
converted to a 128-bit signed integer.
Applies to
Implicit(UIntPtr to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Important
This API is not CLS-compliant.
Implicitly converts a UIntPtr value to a 128-bit signed integer.
public:
static operator Int128(UIntPtr value);
[System.CLSCompliant(false)]
public static implicit operator Int128 (UIntPtr value);
[<System.CLSCompliant(false)>]
static member op_Implicit : unativeint -> Int128
Public Shared Widening Operator CType (value As UIntPtr) As Int128
Parameters
- value
-
UIntPtr
unativeint
The value to convert.
Returns
value
converted to a 128-bit signed integer.
- Attributes
Applies to
Implicit(Int32 to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Implicitly converts a Int32 value to a 128-bit signed integer.
public:
static operator Int128(int value);
public static implicit operator Int128 (int value);
static member op_Implicit : int -> Int128
Public Shared Widening Operator CType (value As Integer) As Int128
Parameters
- value
- Int32
The value to convert.
Returns
value
converted to a 128-bit signed integer.
Applies to
Implicit(Int16 to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Implicitly converts a Int16 value to a 128-bit signed integer.
public:
static operator Int128(short value);
public static implicit operator Int128 (short value);
static member op_Implicit : int16 -> Int128
Public Shared Widening Operator CType (value As Short) As Int128
Parameters
- value
- Int16
The value to convert.
Returns
value
converted to a 128-bit signed integer.
Applies to
Implicit(Char to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Implicitly converts a Char value to a 128-bit signed integer.
public:
static operator Int128(char value);
public static implicit operator Int128 (char value);
static member op_Implicit : char -> Int128
Public Shared Widening Operator CType (value As Char) As Int128
Parameters
- value
- Char
The value to convert.
Returns
value
converted to a 128-bit signed integer.
Applies to
Implicit(Byte to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Implicitly converts a Byte value to a 128-bit signed integer.
public:
static operator Int128(System::Byte value);
public static implicit operator Int128 (byte value);
static member op_Implicit : byte -> Int128
Public Shared Widening Operator CType (value As Byte) As Int128
Parameters
- value
- Byte
The value to convert.
Returns
value
converted to a 128-bit signed integer.
Applies to
Implicit(Int64 to Int128)
- Source:
- Int128.cs
- Source:
- Int128.cs
- Source:
- Int128.cs
Implicitly converts a Int64 value to a 128-bit signed integer.
public:
static operator Int128(long value);
public static implicit operator Int128 (long value);
static member op_Implicit : int64 -> Int128
Public Shared Widening Operator CType (value As Long) As Int128
Parameters
- value
- Int64
The value to convert.
Returns
value
converted to a 128-bit signed integer.