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)

來源:
SQLInt64.cs
來源:
SQLInt64.cs
來源:
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)

來源:
SQLInt64.cs
來源:
SQLInt64.cs
來源:
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)

來源:
SQLInt64.cs
來源:
SQLInt64.cs
來源:
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)

來源:
SQLInt64.cs
來源:
SQLInt64.cs
來源:
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 屬性。

另請參閱

適用於