SqlInt64.Explicit Operator

Definition

Converts to and from a SqlInt64.

Overloads

Explicit(SqlString to SqlInt64)

Converts the supplied SqlString parameter to SqlInt64.

Explicit(SqlSingle to SqlInt64)

Converts the supplied SqlSingle parameter to SqlInt64.

Explicit(SqlMoney to SqlInt64)

Converts the supplied SqlMoney parameter to SqlInt64.

Explicit(SqlInt64 to Int64)

Converts the SqlInt64 parameter to long.

Explicit(SqlDouble to SqlInt64)

Converts the supplied SqlDouble structure to SqlInt64.

Explicit(SqlDecimal to SqlInt64)

Converts the supplied SqlDecimal parameter to SqlInt64.

Explicit(SqlBoolean to SqlInt64)

Converts the supplied SqlBoolean parameter to SqlInt64.

Explicit(SqlString to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Converts the supplied SqlString parameter to SqlInt64.

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

Parameters

x
SqlString

The SqlString object to be converted.

Returns

A new SqlInt64 whose Value is equal to the value represented by the SqlString parameter.

See also

Applies to

Explicit(SqlSingle to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Converts the supplied SqlSingle parameter to SqlInt64.

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

Parameters

x
SqlSingle

The SqlSingle structure to be converted.

Returns

A new SqlInt64 structure whose Value property contains the integer part of the SqlSingle parameter.

See also

Applies to

Explicit(SqlMoney to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Converts the supplied SqlMoney parameter to SqlInt64.

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

Parameters

x
SqlMoney

The SqlMoney structure to be converted.

Returns

A new SqlInt64 structure whose Value property equals the integer part of the SqlMoney parameter.

See also

Applies to

Explicit(SqlInt64 to Int64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Converts the SqlInt64 parameter to long.

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

Parameters

x
SqlInt64

A SqlInt64 structure.

Returns

A new long value equal to the Value of the SqlInt64.

See also

Applies to

Explicit(SqlDouble to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Converts the supplied SqlDouble structure to SqlInt64.

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

Parameters

x
SqlDouble

The SqlDouble structure to be converted.

Returns

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

See also

Applies to

Explicit(SqlDecimal to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Converts the supplied SqlDecimal parameter to SqlInt64.

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

Parameters

x
SqlDecimal

The SqlDecimal structure to be converted.

Returns

A new SqlInt64 structure whose Value is equal to the integer part of the SqlDecimal parameter.

See also

Applies to

Explicit(SqlBoolean to SqlInt64)

Source:
SQLInt64.cs
Source:
SQLInt64.cs
Source:
SQLInt64.cs

Converts the supplied SqlBoolean parameter to SqlInt64.

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

Parameters

x
SqlBoolean

The SqlBoolean structure to be converted.

Returns

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

See also

Applies to