SoapNormalizedString.ToString Method

Definition

Returns Value as a String.

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

Returns

A String that is obtained from Value in the format "<![CDATA[" + Value + "]]>".

Examples

The following code example shows how to use this method. This code example is part of a larger example that is provided for the SoapNormalizedString class.

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

Applies to