SqlByte.Explicit 演算子

定義

パラメーターを SqlByte に変換します。

オーバーロード

Explicit(SqlString to SqlByte)

指定した SqlStringSqlByte に変換します。

Explicit(SqlSingle to SqlByte)

指定した SqlSingle 構造体を SqlByte に変換します。

Explicit(SqlMoney to SqlByte)

SqlMoney パラメーターを SqlByte に変換します。

Explicit(SqlInt64 to SqlByte)

指定した SqlInt64SqlByte に変換します。

Explicit(SqlInt32 to SqlByte)

指定した SqlInt32SqlByte に変換します。

Explicit(SqlDouble to SqlByte)

指定した SqlDoubleSqlByte に変換します。

Explicit(SqlDecimal to SqlByte)

指定した SqlDecimalSqlByte に変換します。

Explicit(SqlByte to Byte)

指定した SqlByte 構造体をバイトに変換します。

Explicit(SqlBoolean to SqlByte)

SqlBoolean パラメーターを SqlByte に変換します。

Explicit(SqlInt16 to SqlByte)

SqlInt16 パラメーターを SqlByte に変換します。

Explicit(SqlString to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

指定した SqlStringSqlByte に変換します。

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

パラメーター

x
SqlString

SqlString クラスのインスタンス。

戻り値

SqlByte で表される数値と等しい Value プロパティを持つ SqlString 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlString.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlSingle to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

指定した SqlSingle 構造体を SqlByte に変換します。

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

パラメーター

x
SqlSingle

SqlSingle 構造。

戻り値

SqlByte パラメーターの Value と等しい Value プロパティを持つ SqlSingle 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlSingle.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlMoney to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

SqlMoney パラメーターを SqlByte に変換します。

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

パラメーター

x
SqlMoney

SqlMoney 構造。

戻り値

SqlByte パラメーターの Value と等しい Value プロパティを持つ SqlMoney 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlMoney.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlInt64 to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

指定した SqlInt64SqlByte に変換します。

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

パラメーター

x
SqlInt64

SqlInt64 構造。

戻り値

SqlByte パラメーターの Value と等しい Value プロパティを持つ SqlInt64 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlInt64.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlInt32 to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

指定した SqlInt32SqlByte に変換します。

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

パラメーター

x
SqlInt32

SqlInt32 構造。

戻り値

SqlByte パラメーターの Value と等しい Value プロパティを持つ SqlInt32 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlInt32.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlDouble to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

指定した SqlDoubleSqlByte に変換します。

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

パラメーター

x
SqlDouble

SqlDouble 構造。

戻り値

SqlByte パラメーターの Value と等しい Value プロパティを持つ SqlDouble 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlDouble.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlDecimal to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

指定した SqlDecimalSqlByte に変換します。

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

パラメーター

x
SqlDecimal

SqlDecimal 構造。

戻り値

SqlByte パラメーターの Value と等しい Value プロパティを持つ SqlDecimal 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlDecimal.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlByte to Byte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

指定した SqlByte 構造体をバイトに変換します。

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

パラメーター

x
SqlByte

バイトに変換される SqlByte 構造体。

戻り値

Value パラメーターの SqlByte プロパティと等しい値を持つバイト。

こちらもご覧ください

適用対象

Explicit(SqlBoolean to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

SqlBoolean パラメーターを SqlByte に変換します。

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

パラメーター

x
SqlBoolean

SqlBoolean に変換される SqlByte パラメーター。

戻り値

指定した SqlByte パラメーターの Value と等しい ByteValue プロパティを持つ SqlBoolean

注釈

この演算子の同等のメソッドは 次のようになります。 SqlBoolean.ToSqlByte()

こちらもご覧ください

適用対象

Explicit(SqlInt16 to SqlByte)

ソース:
SQLByte.cs
ソース:
SQLByte.cs
ソース:
SQLByte.cs

SqlInt16 パラメーターを SqlByte に変換します。

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

パラメーター

x
SqlInt16

SqlInt16 構造。

戻り値

SqlByte パラメーターの Value と等しい Value プロパティを持つ SqlInt16 構造体。

注釈

この演算子の同等のメソッドは 次のようになります。 SqlInt16.ToSqlByte()

こちらもご覧ください

適用対象