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.

C#
public static explicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlString x);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Explicit(SqlSingle to SqlInt32)

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

Converts the supplied SqlSingle to SqlInt32.

C#
public static explicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlSingle x);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Explicit(SqlMoney to SqlInt32)

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

Converts the supplied SqlMoney structure to SqlInt32.

C#
public static explicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlMoney x);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Explicit(SqlInt64 to SqlInt32)

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

Converts the supplied SqlInt64 to SqlInt32.

C#
public static explicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlInt64 x);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Explicit(SqlInt32 to Int32)

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

Converts the supplied SqlInt32 structure to an integer.

C#
public static explicit operator int(System.Data.SqlTypes.SqlInt32 x);

Parameters

x
SqlInt32

A SqlInt32 structure.

Returns

The converted integer value.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Explicit(SqlDouble to SqlInt32)

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

Converts the supplied SqlDouble to SqlInt32.

C#
public static explicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlDouble x);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Explicit(SqlDecimal to SqlInt32)

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

Converts the supplied SqlDecimal structure to SqlInt32.

C#
public static explicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlDecimal x);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Explicit(SqlBoolean to SqlInt32)

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

Converts the supplied SqlBoolean to SqlInt32.

C#
public static explicit operator System.Data.SqlTypes.SqlInt32(System.Data.SqlTypes.SqlBoolean x);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1