SqlInt64.Implicit 运算符

定义

转换为 SqlInt64 结构。

重载

Implicit(SqlInt32 to SqlInt64)

将提供的 SqlInt32 参数转换为 SqlInt64

Implicit(Int64 to SqlInt64)

将长参数转换为 SqlInt64

Implicit(SqlByte to SqlInt64)

将提供的 SqlByte 参数转换为 SqlInt64

Implicit(SqlInt16 to SqlInt64)

将提供的 SqlInt16 参数转换为 SqlInt64

Implicit(SqlInt32 to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

将提供的 SqlInt32 参数转换为 SqlInt64

public:
 static operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlInt32 x);
public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt32 x);
static member op_Implicit : System.Data.SqlTypes.SqlInt32 -> System.Data.SqlTypes.SqlInt64
Public Shared Widening Operator CType (x As SqlInt32) As SqlInt64

参数

x
SqlInt32

要转换的 SqlInt32 结构。

返回

一个新的 SqlInt64 结构,它的 Value 属性等于 Value 参数的 SqlInt32 属性。

另请参阅

适用于

Implicit(Int64 to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

将长参数转换为 SqlInt64

public:
 static operator System::Data::SqlTypes::SqlInt64(long x);
public static implicit operator System.Data.SqlTypes.SqlInt64 (long x);
static member op_Implicit : int64 -> System.Data.SqlTypes.SqlInt64
Public Shared Widening Operator CType (x As Long) As SqlInt64

参数

x
Int64

长整型值。

返回

一个新的 SqlInt64 结构,它的 Value 等于长参数的值。

另请参阅

适用于

Implicit(SqlByte to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

将提供的 SqlByte 参数转换为 SqlInt64

public:
 static operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlByte x);
public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlByte x);
static member op_Implicit : System.Data.SqlTypes.SqlByte -> System.Data.SqlTypes.SqlInt64
Public Shared Widening Operator CType (x As SqlByte) As SqlInt64

参数

x
SqlByte

要转换的 SqlByte 结构。

返回

一个新的 SqlInt64 结构,它的 Value 属性等于 Value 参数的 SqlByte 属性。

另请参阅

适用于

Implicit(SqlInt16 to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

将提供的 SqlInt16 参数转换为 SqlInt64

public:
 static operator System::Data::SqlTypes::SqlInt64(System::Data::SqlTypes::SqlInt16 x);
public static implicit operator System.Data.SqlTypes.SqlInt64 (System.Data.SqlTypes.SqlInt16 x);
static member op_Implicit : System.Data.SqlTypes.SqlInt16 -> System.Data.SqlTypes.SqlInt64
Public Shared Widening Operator CType (x As SqlInt16) As SqlInt64

参数

x
SqlInt16

要转换的 SqlInt16 结构。

返回

一个新的 SqlInt64 结构,它的 Value 属性等于 Value 参数的 SqlInt16 属性。

另请参阅

适用于