SqlInt16.Explicit 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 and from a SqlInt16.
Overloads
Explicit(SqlString to SqlInt16) | |
Explicit(SqlSingle to SqlInt16) | |
Explicit(SqlMoney to SqlInt16) | |
Explicit(SqlInt64 to SqlInt16) | |
Explicit(SqlInt16 to Int16) |
Converts the supplied SqlInt16 structure to a short integer. |
Explicit(SqlDouble to SqlInt16) | |
Explicit(SqlDecimal to SqlInt16) |
Converts the supplied SqlDecimal structure to SqlInt16. |
Explicit(SqlBoolean to SqlInt16) |
Converts the supplied SqlBoolean structure to SqlInt16. |
Explicit(SqlInt32 to SqlInt16) |
Explicit(SqlString to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlString) As SqlInt16
Parameters
Returns
A new SqlInt16 structure whose Value property is equal to the value represented by the SqlString object parameter.
Remarks
The equivalent method for this operator is SqlString.ToSqlInt16()
See also
Applies to
Explicit(SqlSingle to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlSingle x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlSingle x);
static member op_Explicit : System.Data.SqlTypes.SqlSingle -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlSingle) As SqlInt16
Parameters
Returns
A new SqlInt16 structure whose Value property is equal to the integer part of the SqlSingle parameter.
Remarks
The equivalent method for this operator is SqlSingle.ToSqlInt16()
See also
Applies to
Explicit(SqlMoney to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlMoney x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlMoney x);
static member op_Explicit : System.Data.SqlTypes.SqlMoney -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlMoney) As SqlInt16
Parameters
Returns
A new SqlInt16 structure whose Value property is equal to the Value property of the SqlMoney parameter.
Remarks
The equivalent method for this operator is SqlMoney.ToSqlInt16()
See also
Applies to
Explicit(SqlInt64 to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlInt64 x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt64 x);
static member op_Explicit : System.Data.SqlTypes.SqlInt64 -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlInt64) As SqlInt16
Parameters
Returns
A new SqlInt16 structure whose Value property is equal to the Value of the SqlInt64 parameter.
Remarks
The equivalent method for this operator is SqlInt64.ToSqlInt16()
See also
Applies to
Explicit(SqlInt16 to Int16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
Converts the supplied SqlInt16 structure to a short integer.
public:
static explicit operator short(System::Data::SqlTypes::SqlInt16 x);
public static explicit operator short (System.Data.SqlTypes.SqlInt16 x);
static member op_Explicit : System.Data.SqlTypes.SqlInt16 -> int16
Public Shared Narrowing Operator CType (x As SqlInt16) As Short
Parameters
Returns
A short integer whose value is the Value of the SqlInt16 parameter.
See also
Applies to
Explicit(SqlDouble to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlDouble x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDouble x);
static member op_Explicit : System.Data.SqlTypes.SqlDouble -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlDouble) As SqlInt16
Parameters
Returns
A new SqlInt16 structure whose Value property is equal to the integer part of the SqlDouble parameter.
Remarks
The equivalent method for this operator is SqlDouble.ToSqlInt16()
See also
Applies to
Explicit(SqlDecimal to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
Converts the supplied SqlDecimal structure to SqlInt16.
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlDecimal x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlDecimal x);
static member op_Explicit : System.Data.SqlTypes.SqlDecimal -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlDecimal) As SqlInt16
Parameters
A SqlDecimal structure.
Returns
A new SqlInt16 structure whose Value property is equal to the Value property of the SqlDecimal parameter.
Remarks
The equivalent method for this operator is SqlDecimal.ToSqlInt16()
See also
Applies to
Explicit(SqlBoolean to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
Converts the supplied SqlBoolean structure to SqlInt16.
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlBoolean x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlBoolean x);
static member op_Explicit : System.Data.SqlTypes.SqlBoolean -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlBoolean) As SqlInt16
Parameters
A SqlBoolean structure.
Returns
A new SqlInt16 structure whose Value property is equal to the ByteValue property of the SqlBoolean parameter.
Remarks
The equivalent method for this operator is SqlBoolean.ToSqlInt16()
See also
Applies to
Explicit(SqlInt32 to SqlInt16)
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
- Source:
- SQLInt16.cs
public:
static explicit operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlInt32 x);
public static explicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlInt32 x);
static member op_Explicit : System.Data.SqlTypes.SqlInt32 -> System.Data.SqlTypes.SqlInt16
Public Shared Narrowing Operator CType (x As SqlInt32) As SqlInt16
Parameters
Returns
A new SqlInt16 structure whose Value property is equal to the Value of the supplied SqlInt32 parameter.
Remarks
The equivalent method for this operator is SqlInt32.ToSqlInt16()