SqlInt64.Implicit Operator

Definition

Converts to a SqlInt64 structure.

Overloads

Implicit(SqlInt32 to SqlInt64)

Converts the supplied SqlInt32 parameter to SqlInt64.

Implicit(Int64 to SqlInt64)

Converts the long parameter to SqlInt64.

Implicit(SqlByte to SqlInt64)

Converts the supplied SqlByte parameter to SqlInt64.

Implicit(SqlInt16 to SqlInt64)

Converts the supplied SqlInt16 parameter to SqlInt64.

Implicit(SqlInt32 to SqlInt64)

Converts the supplied SqlInt32 parameter to 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

Parameters

x
SqlInt32

The SqlInt32 structure to be converted.

Returns

A new SqlInt64 structure whose Value property equals the Value property of the SqlInt32 parameter.

See also

Applies to

Implicit(Int64 to SqlInt64)

Converts the long parameter to 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

Parameters

x
Int64

A long integer value.

Returns

A new SqlInt64 structure whose Value equals the value of the long parameter.

See also

Applies to

Implicit(SqlByte to SqlInt64)

Converts the supplied SqlByte parameter to 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

Parameters

x
SqlByte

The SqlByte structure to be converted.

Returns

A new SqlInt64 structure whose Value property equals the Value property of the SqlByte parameter.

See also

Applies to

Implicit(SqlInt16 to SqlInt64)

Converts the supplied SqlInt16 parameter to 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

Parameters

x
SqlInt16

The SqlInt16 structure to be converted.

Returns

A new SqlInt64 structure whose Value property equals the Value property of the SqlInt16 parameter.

See also

Applies to