NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Boolean.ToString (Boolean)

Converts a specified Boolean to a String.

[Visual Basic]
Overloads Public Shared Function ToString( _
   ByVal value As Boolean _
) As String
[C#]
public static string ToString(
   bool value
);
[C++]
public: static String* ToString(
   bool value
);
[JScript]
public static function ToString(
   value : Boolean
) : String;

Parameters

value
A Boolean value to be converted.

Return Value

The string representation of a specified Boolean value.

Remarks

The ToString method converts a Boolean value of this instance to a string and returns the Boolean value for this instance of either FalseString or TrueString.

See Also

Boolean Structure | Boolean Members | System Namespace | Boolean.ToString Overload List | String