SoapNegativeInteger Constructors

Definition

Initializes a new instance of the SoapNegativeInteger class.

Overloads

SoapNegativeInteger()

Initializes a new instance of the SoapNegativeInteger class.

SoapNegativeInteger(Decimal)

Initializes a new instance of the SoapNegativeInteger class with a Decimal value.

SoapNegativeInteger()

Initializes a new instance of the SoapNegativeInteger class.

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

Examples

The following code example shows how to use this constructor.

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

Applies to

SoapNegativeInteger(Decimal)

Initializes a new instance of the SoapNegativeInteger class with a Decimal value.

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)

Parameters

value
Decimal

A Decimal value to initialize the current instance.

Exceptions

value is greater than -1.

Examples

The following code example shows how to use this constructor.

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

Applies to