SqlInt16.Implicit 연산자

정의

SqlInt16 구조체로 변환합니다.

오버로드

Implicit(SqlByte to SqlInt16)

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

Implicit(Int16 to SqlInt16)

제공된 정수(Short)를 SqlInt16으로 변환합니다.

Implicit(SqlByte to SqlInt16)

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

public:
 static operator System::Data::SqlTypes::SqlInt16(System::Data::SqlTypes::SqlByte x);
public static implicit operator System.Data.SqlTypes.SqlInt16 (System.Data.SqlTypes.SqlByte x);
static member op_Implicit : System.Data.SqlTypes.SqlByte -> System.Data.SqlTypes.SqlInt16
Public Shared Widening Operator CType (x As SqlByte) As SqlInt16

매개 변수

x
SqlByte

SqlByte 구조체입니다.

반환

SqlInt16

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

설명

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

추가 정보

적용 대상

Implicit(Int16 to SqlInt16)

제공된 정수(Short)를 SqlInt16으로 변환합니다.

public:
 static operator System::Data::SqlTypes::SqlInt16(short x);
public static implicit operator System.Data.SqlTypes.SqlInt16 (short x);
static member op_Implicit : int16 -> System.Data.SqlTypes.SqlInt16
Public Shared Widening Operator CType (x As Short) As SqlInt16

매개 변수

x
Int16

정수(Short) 값입니다.

반환

SqlInt16

지정된 정수(Short)와 같은 값을 갖는 SqlInt16 구조체입니다.

추가 정보

적용 대상