SqlDecimal.Explicit 연산자

정의

제공된 구조를 SqlDecimal.로 변환합니다.

오버로드

Name Description
Explicit(Double to SqlDecimal)

매개 변수SqlDecimalDouble .로 변환합니다.

Explicit(SqlString to SqlDecimal)

제공된 SqlString 매개 변수 SqlDecimal를 .로 변환합니다.

Explicit(SqlSingle to SqlDecimal)

제공된 SqlSingle 구조를 SqlDecimal.로 변환합니다.

Explicit(SqlDecimal to Decimal)

매개 변수DecimalSqlDecimal .로 변환합니다.

Explicit(SqlBoolean to SqlDecimal)

제공된 SqlBoolean 구조를 SqlDecimal.로 변환합니다.

Explicit(SqlDouble to SqlDecimal)

제공된 SqlDouble 구조를 SqlDecimal.로 변환합니다.

Explicit(Double to SqlDecimal)

매개 변수SqlDecimalDouble .로 변환합니다.

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

매개 변수

x
Double

Double 변환할 구조체입니다.

반품

값이 매개 변수 값과 같은 새 SqlDecimal 구조체 Double 입니다.

설명

이 연산자에 해당하는 메서드는 다음과 같습니다. SqlDecimal.Value

적용 대상

Explicit(SqlString to SqlDecimal)

제공된 SqlString 매개 변수 SqlDecimal를 .로 변환합니다.

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

매개 변수

x
SqlString

SqlString 변환할 개체입니다.

반품

매개 변수가 Value 나타내는 SqlString 값과 같은 새 SqlDecimal 구조체입니다.

설명

이 연산자에 해당하는 메서드는 다음과 같습니다. SqlString.ToSqlDecimal()

추가 정보

적용 대상

Explicit(SqlSingle to SqlDecimal)

제공된 SqlSingle 구조를 SqlDecimal.로 변환합니다.

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

매개 변수

x
SqlSingle

SqlSingle 변환할 구조체입니다.

반품

해당 속성이 Value 매개 변수의 속성과 Value 같은 새 SqlDecimal 구조체입니다SqlSingle.

설명

이 연산자에 해당하는 메서드는 다음과 같습니다. SqlSingle.ToSqlDecimal()

추가 정보

적용 대상

Explicit(SqlDecimal to Decimal)

매개 변수DecimalSqlDecimal .로 변환합니다.

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

매개 변수

x
SqlDecimal

SqlDecimal 변환할 구조체입니다.

반품

값이 매개 변수의 값과 같은 새 Decimal 구조체입니다SqlDecimal.Value

추가 정보

적용 대상

Explicit(SqlBoolean to SqlDecimal)

제공된 SqlBoolean 구조를 SqlDecimal.로 변환합니다.

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

매개 변수

x
SqlBoolean

SqlBoolean 변환할 구조체입니다.

반품

매개 변수의 SqlBoolean 구조체 Value 와 같은 ByteValueSqlDecimal 구조체입니다.

설명

이 연산자에 해당하는 메서드는 다음과 같습니다. SqlBoolean.ToSqlDecimal()

추가 정보

적용 대상

Explicit(SqlDouble to SqlDecimal)

제공된 SqlDouble 구조를 SqlDecimal.로 변환합니다.

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

매개 변수

x
SqlDouble

SqlDouble 변환할 구조체입니다.

반품

매개 변수와 SqlDouble 같은 ValueSqlDecimal 구조 Value 체입니다.

설명

이 연산자에 해당하는 메서드는 다음과 같습니다. SqlDouble.ToSqlDecimal()

추가 정보

적용 대상