BooleanExtensionToString Method (Boolean, String, String) |
Returns a string description for a boolean value.
Namespace: ArtDatabankenAssembly: ArtDatabanken (in ArtDatabanken.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax public static string ToString(
this bool value,
string trueValue,
string falseValue
)
<ExtensionAttribute>
Public Shared Function ToString (
value As Boolean,
trueValue As String,
falseValue As String
) As String
public:
[ExtensionAttribute]
static String^ ToString(
bool value,
String^ trueValue,
String^ falseValue
)
[<ExtensionAttribute>]
static member ToString :
value : bool *
trueValue : string *
falseValue : string -> string
Parameters
- value
- Type: SystemBoolean
The boolean value. - trueValue
- Type: SystemString
The textual value to be returned if the current boolean is true. - falseValue
- Type: SystemString
The textual value to be returned if the current boolean is false.
Return Value
Type:
StringA string representation of the current boolean value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Boolean. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also