UInt128.Implicit 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Implicit(Byte to UInt128) |
将值隐式转换为 Byte 128 位无符号整数。 |
Implicit(Char to UInt128) |
将值隐式转换为 Char 128 位无符号整数。 |
Implicit(UInt16 to UInt128) |
将值隐式转换为 UInt16 128 位无符号整数。 |
Implicit(UInt32 to UInt128) |
将值隐式转换为 UInt32 128 位无符号整数。 |
Implicit(UInt64 to UInt128) |
将值隐式转换为 UInt64 128 位无符号整数。 |
Implicit(UIntPtr to UInt128) |
将值隐式转换为 UIntPtr 128 位无符号整数。 |
Implicit(Byte to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
将值隐式转换为 Byte 128 位无符号整数。
public:
static operator UInt128(System::Byte value);
public static implicit operator UInt128 (byte value);
static member op_Implicit : byte -> UInt128
Public Shared Widening Operator CType (value As Byte) As UInt128
参数
- value
- Byte
要转换的值。
返回
value
转换为 128 位无符号整数。
适用于
Implicit(Char to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
将值隐式转换为 Char 128 位无符号整数。
public:
static operator UInt128(char value);
public static implicit operator UInt128 (char value);
static member op_Implicit : char -> UInt128
Public Shared Widening Operator CType (value As Char) As UInt128
参数
- value
- Char
要转换的值。
返回
value
转换为 128 位无符号整数。
适用于
Implicit(UInt16 to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
重要
此 API 不符合 CLS。
将值隐式转换为 UInt16 128 位无符号整数。
public:
static operator UInt128(System::UInt16 value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (ushort value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint16 -> UInt128
Public Shared Widening Operator CType (value As UShort) As UInt128
参数
- value
- UInt16
要转换的值。
返回
value
转换为 128 位无符号整数。
- 属性
适用于
Implicit(UInt32 to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
重要
此 API 不符合 CLS。
将值隐式转换为 UInt32 128 位无符号整数。
public:
static operator UInt128(System::UInt32 value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (uint value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint32 -> UInt128
Public Shared Widening Operator CType (value As UInteger) As UInt128
参数
- value
- UInt32
要转换的值。
返回
value
转换为 128 位无符号整数。
- 属性
适用于
Implicit(UInt64 to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
重要
此 API 不符合 CLS。
将值隐式转换为 UInt64 128 位无符号整数。
public:
static operator UInt128(System::UInt64 value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (ulong value);
[<System.CLSCompliant(false)>]
static member op_Implicit : uint64 -> UInt128
Public Shared Widening Operator CType (value As ULong) As UInt128
参数
- value
- UInt64
要转换的值。
返回
value
转换为 128 位无符号整数。
- 属性
适用于
Implicit(UIntPtr to UInt128)
- Source:
- UInt128.cs
- Source:
- UInt128.cs
- Source:
- UInt128.cs
重要
此 API 不符合 CLS。
将值隐式转换为 UIntPtr 128 位无符号整数。
public:
static operator UInt128(UIntPtr value);
[System.CLSCompliant(false)]
public static implicit operator UInt128 (UIntPtr value);
[<System.CLSCompliant(false)>]
static member op_Implicit : unativeint -> UInt128
Public Shared Widening Operator CType (value As UIntPtr) As UInt128
参数
- value
-
UIntPtr
unativeint
要转换的值。
返回
value
转换为 128 位无符号整数。
- 属性