다음을 통해 공유


SoapNegativeInteger 생성자

정의

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

오버로드

SoapNegativeInteger()

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

SoapNegativeInteger(Decimal)

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

SoapNegativeInteger()

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

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

예제

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

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

적용 대상

SoapNegativeInteger(Decimal)

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

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

매개 변수

value
Decimal

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

예외

value가 -1보다 큽니다.

예제

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

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

적용 대상