SqlDecimal.Explicit 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
제공된 구조체를 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
매개 변수
반환
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
매개 변수
반환
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
매개 변수
반환
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
매개 변수
변환할 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
매개 변수
변환할 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
매개 변수
반환
SqlDecimal 매개 변수의 Value와 같은 Value를 갖는 새 SqlDouble 구조체입니다.
설명
이 연산자에 대 한 해당 메서드는 SqlDouble.ToSqlDecimal()
추가 정보
적용 대상
.NET