Partager via


SoapNormalizedString.ToString Méthode

Définition

Retourne une Value comme String.

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

Retours

String obtenu à partir de Value au format "<![CDATA[" + Value + "]]>".

Exemples

L'exemple de code suivant montre comment utiliser cette méthode. Cet exemple de code fait partie d’un exemple plus large fourni pour la SoapNormalizedString classe .

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

S’applique à