SoapNonPositiveInteger.ToString Método

Definición

Devuelve un parámetro Value como clase String.

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Devoluciones

Objeto String que se obtiene de Value.

Ejemplos

En el ejemplo de código siguiente, se muestra cómo se utiliza el método ToString. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase SoapNonPositiveInteger.

// Print the value of the SoapNonPositiveInteger object
// in XSD format.
Console::WriteLine( L"The SoapNonPositiveInteger object in XSD format is {0}.",
   xsdInteger );
// Print the value of the SoapNonPositiveInteger object
// in XSD format.
Console.WriteLine(
    "The SoapNonPositiveInteger object in XSD format is {0}.",
    xsdInteger.ToString());

Se aplica a