Freigeben über


SoapNonNegativeInteger Konstruktoren

Definition

Initialisiert eine neue Instanz der SoapNonNegativeInteger-Klasse.

Überlädt

SoapNonNegativeInteger()

Initialisiert eine neue Instanz der SoapNonNegativeInteger-Klasse.

SoapNonNegativeInteger(Decimal)

Initialisiert eine neue Instanz der SoapNonNegativeInteger-Klasse mit einem Decimal-Wert.

SoapNonNegativeInteger()

Initialisiert eine neue Instanz der SoapNonNegativeInteger-Klasse.

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

Beispiele

Im folgenden Codebeispiel wird die Verwendung dieses Konstruktors veranschaulicht.

// 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());

Gilt für:

SoapNonNegativeInteger(Decimal)

Initialisiert eine neue Instanz der SoapNonNegativeInteger-Klasse mit einem Decimal-Wert.

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)

Parameter

value
Decimal

Ein Decimal-Wert zum Initialisieren der aktuellen Instanz.

Ausnahmen

value ist kleiner als 0.

Beispiele

Im folgenden Codebeispiel wird die Verwendung dieses Konstruktors veranschaulicht.

// 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());

Gilt für: