Share via


SoapNegativeInteger Constructores

Definición

Inicializa una nueva instancia de la clase SoapNegativeInteger.

Sobrecargas

SoapNegativeInteger()

Inicializa una nueva instancia de la clase SoapNegativeInteger.

SoapNegativeInteger(Decimal)

Inicializa una nueva instancia de la clase SoapNegativeInteger con un valor Decimal.

SoapNegativeInteger()

Inicializa una nueva instancia de la clase SoapNegativeInteger.

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

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar este 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());

Se aplica a

SoapNegativeInteger(Decimal)

Inicializa una nueva instancia de la clase SoapNegativeInteger con un valor 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)

Parámetros

value
Decimal

Valor Decimal con el que se va a inicializar la instancia actual.

Excepciones

value es mayor que -1.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar este 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());

Se aplica a