SqlInt32.Explicit Operator

Definition

Converts to and from a SqlInt32.

Overloads

Explicit(SqlString to SqlInt32)

Converts the supplied SqlString object to SqlInt32.

Explicit(SqlSingle to SqlInt32)

Converts the supplied SqlSingle to SqlInt32.

Explicit(SqlMoney to SqlInt32)

Converts the supplied SqlMoney structure to SqlInt32.

Explicit(SqlInt64 to SqlInt32)

Converts the supplied SqlInt64 to SqlInt32.

Explicit(SqlInt32 to Int32)

Converts the supplied SqlInt32 structure to an integer.

Explicit(SqlDouble to SqlInt32)

Converts the supplied SqlDouble to SqlInt32.

Explicit(SqlDecimal to SqlInt32)

Converts the supplied SqlDecimal structure to SqlInt32.

Explicit(SqlBoolean to SqlInt32)

Converts the supplied SqlBoolean to SqlInt32.

Explicit(SqlString to SqlInt32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlString object to SqlInt32.

public:
 static explicit operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlInt32
Public Shared Narrowing Operator CType (x As SqlString) As SqlInt32

Parameters

x
SqlString

A SqlString object.

Returns

A new SqlInt32 structure whose Value property equals the value represented by the SqlString parameter.

Remarks

The equivalent method for this operator is SqlString.ToSqlInt32()

See also

Applies to

Explicit(SqlSingle to SqlInt32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlSingle to SqlInt32.

public:
 static explicit operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlSingle x);
public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlSingle x);
static member op_Explicit : System.Data.SqlTypes.SqlSingle -> System.Data.SqlTypes.SqlInt32
Public Shared Narrowing Operator CType (x As SqlSingle) As SqlInt32

Parameters

x
SqlSingle

A SqlSingle structure.

Returns

A new SqlInt32 structure whose Value property equals the integer part of the SqlSingle parameter.

Remarks

The equivalent method for this operator is SqlSingle.ToSqlInt32()

See also

Applies to

Explicit(SqlMoney to SqlInt32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlMoney structure to SqlInt32.

public:
 static explicit operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlMoney x);
public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlMoney x);
static member op_Explicit : System.Data.SqlTypes.SqlMoney -> System.Data.SqlTypes.SqlInt32
Public Shared Narrowing Operator CType (x As SqlMoney) As SqlInt32

Parameters

x
SqlMoney

A SqlMoney structure.

Returns

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

Remarks

The equivalent method for this operator is SqlMoney.ToSqlInt32()

See also

Applies to

Explicit(SqlInt64 to SqlInt32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlInt64 to SqlInt32.

public:
 static explicit operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlInt64 x);
public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlInt64 x);
static member op_Explicit : System.Data.SqlTypes.SqlInt64 -> System.Data.SqlTypes.SqlInt32
Public Shared Narrowing Operator CType (x As SqlInt64) As SqlInt32

Parameters

x
SqlInt64

A SqlInt64 structure.

Returns

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

Remarks

The equivalent method for this operator is SqlInt64.ToSqlInt32()

See also

Applies to

Explicit(SqlInt32 to Int32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlInt32 structure to an integer.

public:
 static explicit operator int(System::Data::SqlTypes::SqlInt32 x);
public static explicit operator int (System.Data.SqlTypes.SqlInt32 x);
static member op_Explicit : System.Data.SqlTypes.SqlInt32 -> int
Public Shared Narrowing Operator CType (x As SqlInt32) As Integer

Parameters

x
SqlInt32

A SqlInt32 structure.

Returns

The converted integer value.

See also

Applies to

Explicit(SqlDouble to SqlInt32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlDouble to SqlInt32.

public:
 static explicit operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlDouble x);
public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDouble x);
static member op_Explicit : System.Data.SqlTypes.SqlDouble -> System.Data.SqlTypes.SqlInt32
Public Shared Narrowing Operator CType (x As SqlDouble) As SqlInt32

Parameters

x
SqlDouble

A SqlDouble structure.

Returns

A new SqlInt32 structure whose Value property equals the integer part of the SqlDouble parameter.

Remarks

The equivalent method for this operator is SqlDouble.ToSqlInt32()

See also

Applies to

Explicit(SqlDecimal to SqlInt32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlDecimal structure to SqlInt32.

public:
 static explicit operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlDecimal x);
public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlDecimal x);
static member op_Explicit : System.Data.SqlTypes.SqlDecimal -> System.Data.SqlTypes.SqlInt32
Public Shared Narrowing Operator CType (x As SqlDecimal) As SqlInt32

Parameters

x
SqlDecimal

A SqlDecimal structure.

Returns

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

Remarks

The equivalent method for this operator is SqlDecimal.ToSqlInt32()

See also

Applies to

Explicit(SqlBoolean to SqlInt32)

Source:
SQLInt32.cs
Source:
SQLInt32.cs
Source:
SQLInt32.cs

Converts the supplied SqlBoolean to SqlInt32.

public:
 static explicit operator System::Data::SqlTypes::SqlInt32(System::Data::SqlTypes::SqlBoolean x);
public static explicit operator System.Data.SqlTypes.SqlInt32 (System.Data.SqlTypes.SqlBoolean x);
static member op_Explicit : System.Data.SqlTypes.SqlBoolean -> System.Data.SqlTypes.SqlInt32
Public Shared Narrowing Operator CType (x As SqlBoolean) As SqlInt32

Parameters

x
SqlBoolean

A SqlBoolean structure.

Returns

A new SqlInt32 structure whose Value property is equal to the ByteValue property of the SqlBoolean parameter.

Remarks

The equivalent method for this operator is SqlBoolean.ToSqlInt32()

See also

Applies to