SqlInt32.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 SqlInt32 structure.
Overloads
Implicit(SqlByte to SqlInt32) | |
Implicit(SqlInt16 to SqlInt32) | |
Implicit(Int32 to SqlInt32) |
Converts the supplied integer to SqlInt32. |
Implicit(SqlByte to SqlInt32)
- Source:
- SQLInt32.cs
- Source:
- SQLInt32.cs
- Source:
- SQLInt32.cs
public:
static operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlByte x);
public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlByte x);
static member op_Implicit : System.Data.SqlTypes.SqlByte -> System.Data.SqlTypes.SqlInt32
Public Shared Widening Operator CType (x As SqlByte) As SqlInt32
Parameters
Returns
A new SqlInt32 structure whose Value property equals the Value property of the SqlByte parameter.
Remarks
The equivalent method for this operator is SqlByte.ToSqlInt32()
See also
Applies to
Implicit(SqlInt16 to SqlInt32)
- Source:
- SQLInt32.cs
- Source:
- SQLInt32.cs
- Source:
- SQLInt32.cs
public:
static operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlInt16 x);
public static implicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt16 x);
static member op_Implicit : System.Data.SqlTypes.SqlInt16 -> System.Data.SqlTypes.SqlInt32
Public Shared Widening Operator CType (x As SqlInt16) As SqlInt32
Parameters
Returns
A new SqlInt32 structure whose Value property equals the Value property of the SqlInt16 parameter.
Remarks
The equivalent method for this operator is SqlInt16.ToSqlInt32()
See also
Applies to
Implicit(Int32 to SqlInt32)
- Source:
- SQLInt32.cs
- Source:
- SQLInt32.cs
- Source:
- SQLInt32.cs
Converts the supplied integer to SqlInt32.
public:
static operator System::Data::SqlTypes::SqlInt32(int x);
public static implicit operator System.Data.SqlTypes.SqlInt32 (int x);
static member op_Implicit : int -> System.Data.SqlTypes.SqlInt32
Public Shared Widening Operator CType (x As Integer) As SqlInt32
Parameters
- x
- Int32
An integer value.
Returns
A new SqlInt32 structure whose Value property is equal to the integer parameter.