Compartir a través de


SoapNormalizedString.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

String que se obtiene de Value con el formato "<![CDATA[" + Value + "]]>".

Ejemplos

En el ejemplo de código siguiente se muestra la forma de utilizar este método. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase SoapNormalizedString.

// Print the string representation of the object.
Console::WriteLine( L"The normalized value of this string is \"{0}\".",
   normalized );
// Print the string representation of the object.
Console.WriteLine(
    "The normalized value of this string is \"{0}\".",
    normalized.ToString());

Se aplica a