SqlMoney.Implicit 연산자

정의

구조체로 SqlMoney 변환합니다.

오버로드

Name Description
Implicit(SqlByte to SqlMoney)

이 암시적 연산자는 제공된 SqlByte 매개 변수를 .로 SqlMoney변환합니다.

Implicit(SqlInt16 to SqlMoney)

이 암시적 연산자는 제공된 SqlInt16 매개 변수를 .로 SqlMoney변환합니다.

Implicit(SqlInt32 to SqlMoney)

이 암시적 연산자는 제공된 SqlInt32 매개 변수를 .로 SqlMoney변환합니다.

Implicit(SqlInt64 to SqlMoney)

이 암시적 연산자는 제공된 SqlInt64 매개 변수를 .로 SqlMoney변환합니다.

Implicit(Decimal to SqlMoney)

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

Implicit(Int64 to SqlMoney)

이 암시적 연산자는 제공된 Int64 매개 변수를 .로 SqlMoney변환합니다.

Implicit(SqlByte to SqlMoney)

이 암시적 연산자는 제공된 SqlByte 매개 변수를 .로 SqlMoney변환합니다.

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

매개 변수

x
SqlByte

SqlByte 변환할 구조체입니다.

반품

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

설명

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

추가 정보

적용 대상

Implicit(SqlInt16 to SqlMoney)

이 암시적 연산자는 제공된 SqlInt16 매개 변수를 .로 SqlMoney변환합니다.

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

매개 변수

x
SqlInt16

SqlInt16 변환할 구조체입니다.

반품

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

설명

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

추가 정보

적용 대상

Implicit(SqlInt32 to SqlMoney)

이 암시적 연산자는 제공된 SqlInt32 매개 변수를 .로 SqlMoney변환합니다.

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

매개 변수

x
SqlInt32

SqlInt32 변환할 구조체입니다.

반품

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

설명

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

추가 정보

적용 대상

Implicit(SqlInt64 to SqlMoney)

이 암시적 연산자는 제공된 SqlInt64 매개 변수를 .로 SqlMoney변환합니다.

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

매개 변수

x
SqlInt64

SqlInt64 변환할 구조체입니다.

반품

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

설명

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

추가 정보

적용 대상

Implicit(Decimal to SqlMoney)

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

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

매개 변수

x
Decimal

Decimal 변환할 값입니다.

반품

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

추가 정보

적용 대상

Implicit(Int64 to SqlMoney)

이 암시적 연산자는 제공된 Int64 매개 변수를 .로 SqlMoney변환합니다.

public:
 static operator System::Data::SqlTypes::SqlMoney(long x);
public static implicit operator System.Data.SqlTypes.SqlMoney(long x);
static member op_Implicit : int64 -> System.Data.SqlTypes.SqlMoney
Public Shared Widening Operator CType (x As Long) As SqlMoney

매개 변수

x
Int64

Int64 변환할 구조체입니다.

반품

해당 속성이 Value 매개 변수 값과 같은 새 SqlMoney 구조체 Int64 입니다.

설명

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

추가 정보

적용 대상