SqlDecimal.Explicit 연산자

정의

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

오버로드

Explicit(Double to SqlDecimal)

Double 매개 변수를 SqlDecimal로 변환합니다.

Explicit(SqlString to SqlDecimal)

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

Explicit(SqlSingle to SqlDecimal)

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

Explicit(SqlDecimal to Decimal)

SqlDecimal 매개 변수를 Decimal로 변환합니다.

Explicit(SqlBoolean to SqlDecimal)

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

Explicit(SqlDouble to SqlDecimal)

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

Explicit(Double to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

Double 매개 변수를 SqlDecimal로 변환합니다.

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)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

제공된 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 개체입니다.

반환

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

설명

이 연산자에 대 한 해당 메서드는 SqlString.ToSqlDecimal()

추가 정보

적용 대상

Explicit(SqlSingle to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

제공된 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 구조체입니다.

반환

SqlDecimal 매개 변수의 Value과 같은 Value 속성을 갖는 새 SqlSingle 구조체입니다.

설명

이 연산자에 대 한 해당 메서드는 SqlSingle.ToSqlDecimal()

추가 정보

적용 대상

Explicit(SqlDecimal to Decimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

SqlDecimal 매개 변수를 Decimal로 변환합니다.

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 매개 변수의 Value와 같은 값을 갖는 새 SqlDecimal 구조체입니다.

추가 정보

적용 대상

Explicit(SqlBoolean to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

제공된 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 구조체입니다.

반환

SqlDecimal 매개 변수의 Value와 같은 ByteValue를 갖는 새 SqlBoolean 구조체입니다.

설명

이 연산자에 대 한 해당 메서드는 SqlBoolean.ToSqlDecimal()

추가 정보

적용 대상

Explicit(SqlDouble to SqlDecimal)

Source:
SQLDecimal.cs
Source:
SQLDecimal.cs
Source:
SQLDecimal.cs

제공된 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 구조체입니다.

반환

SqlDecimal 매개 변수의 Value와 같은 Value를 갖는 새 SqlDouble 구조체입니다.

설명

이 연산자에 대 한 해당 메서드는 SqlDouble.ToSqlDecimal()

추가 정보

적용 대상