SqlInt64.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.
Converts to a SqlInt64 structure.
Overloads
Implicit(SqlInt32 to SqlInt64) | |
Implicit(Int64 to SqlInt64) |
Converts the long parameter to SqlInt64. |
Implicit(SqlByte to SqlInt64) | |
Implicit(SqlInt16 to SqlInt64) |
Implicit(SqlInt32 to SqlInt64)
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
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
Returns
A new SqlInt64 structure whose Value property equals the Value property of the SqlInt32 parameter.
See also
Applies to
Implicit(Int64 to SqlInt64)
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
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)
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
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
Returns
A new SqlInt64 structure whose Value property equals the Value property of the SqlByte parameter.
See also
Applies to
Implicit(SqlInt16 to SqlInt64)
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
- Source:
- SQLInt64.cs
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
Returns
A new SqlInt64 structure whose Value property equals the Value property of the SqlInt16 parameter.