다음을 통해 공유


SoapNonNegativeInteger 생성자

정의

SoapNonNegativeInteger 클래스의 새 인스턴스를 초기화합니다.

오버로드

SoapNonNegativeInteger()

SoapNonNegativeInteger 클래스의 새 인스턴스를 초기화합니다.

SoapNonNegativeInteger(Decimal)

SoapNonNegativeInteger 값을 사용하여 Decimal 클래스의 새 인스턴스를 초기화합니다.

SoapNonNegativeInteger()

SoapNonNegativeInteger 클래스의 새 인스턴스를 초기화합니다.

public:
 SoapNonNegativeInteger();
public SoapNonNegativeInteger ();
Public Sub New ()

예제

다음 코드 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.

// Create a SoapNonNegativeInteger object.
SoapNonNegativeInteger^ xsdInteger = gcnew SoapNonNegativeInteger;
xsdInteger->Value = +14;
Console::WriteLine( L"The value of the SoapNonNegativeInteger object is {0}.", xsdInteger );
// Create a SoapNonNegativeInteger object.
SoapNonNegativeInteger xsdInteger =
    new SoapNonNegativeInteger();
xsdInteger.Value = +14;
Console.WriteLine(
    "The value of the SoapNonNegativeInteger object is {0}.",
    xsdInteger.ToString());

적용 대상

SoapNonNegativeInteger(Decimal)

SoapNonNegativeInteger 값을 사용하여 Decimal 클래스의 새 인스턴스를 초기화합니다.

public:
 SoapNonNegativeInteger(System::Decimal value);
public SoapNonNegativeInteger (decimal value);
new System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger : decimal -> System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonNegativeInteger
Public Sub New (value As Decimal)

매개 변수

value
Decimal

현재 인스턴스를 초기화할 Decimal 값입니다.

예외

value 가 0보다 작습니다.

예제

다음 코드 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.

// Create a SoapNonNegativeInteger object.
Decimal decimalValue = +14;
SoapNonNegativeInteger^ xsdInteger = gcnew SoapNonNegativeInteger( decimalValue );
Console::WriteLine( L"The value of the SoapNonNegativeInteger object is {0}.", xsdInteger );
// Create a SoapNonNegativeInteger object.
decimal decimalValue = +14;
SoapNonNegativeInteger xsdInteger =
    new SoapNonNegativeInteger(decimalValue);
Console.WriteLine(
    "The value of the SoapNonNegativeInteger object is {0}.",
    xsdInteger.ToString());

적용 대상