SqlSingle.Explicit 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SqlSingle 형식 간 변환을 수행합니다.
오버로드
Explicit(SqlBoolean to SqlSingle) |
이 암시적 연산자는 제공된 SqlBoolean을 SqlSingle로 변환합니다. |
Explicit(SqlDouble to SqlSingle) | |
Explicit(SqlSingle to Single) |
지정된 SqlSingle 구조체를 부동 소수점으로 변환합니다. |
Explicit(SqlString to SqlSingle) |
Explicit(SqlBoolean to SqlSingle)
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
이 암시적 연산자는 제공된 SqlBoolean을 SqlSingle로 변환합니다.
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlBoolean x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlBoolean x);
static member op_Explicit : System.Data.SqlTypes.SqlBoolean -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlBoolean) As SqlSingle
매개 변수
변환할 SqlBoolean 구조체입니다.
반환
SqlSingle 매개 변수의 Value와 같은 ByteValue를 갖는 새 SqlBoolean 구조체입니다.
설명
이 연산자에 대 한 해당 메서드는 SqlBoolean.ToSqlSingle()
추가 정보
적용 대상
Explicit(SqlDouble to SqlSingle)
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlDouble x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlDouble x);
static member op_Explicit : System.Data.SqlTypes.SqlDouble -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlDouble) As SqlSingle
매개 변수
반환
SqlSingle 매개 변수의 Value와 같은 Value를 갖는 새 SqlDouble 구조체입니다.
설명
이 연산자에 대 한 해당 메서드는 SqlDouble.ToSqlSingle()
추가 정보
적용 대상
Explicit(SqlSingle to Single)
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
지정된 SqlSingle 구조체를 부동 소수점으로 변환합니다.
public:
static explicit operator float(System::Data::SqlTypes::SqlSingle x);
public static explicit operator float (System.Data.SqlTypes.SqlSingle x);
static member op_Explicit : System.Data.SqlTypes.SqlSingle -> single
Public Shared Narrowing Operator CType (x As SqlSingle) As Single
매개 변수
반환
SqlSingle 구조체의 값을 포함하는 부동 소수점입니다.
추가 정보
적용 대상
Explicit(SqlString to SqlSingle)
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
- Source:
- SQLSingle.cs
public:
static explicit operator System::Data::SqlTypes::SqlSingle(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlSingle (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlSingle
Public Shared Narrowing Operator CType (x As SqlString) As SqlSingle
매개 변수
반환
SqlSingle 매개 변수가 나타내는 값과 같은 Value을 갖는 새 SqlString 구조체입니다.
설명
이 연산자에 대 한 해당 메서드는 SqlString.ToSqlSingle()
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET