BooleanExtensionToString Method (Boolean, IFormatProvider, 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,
IFormatProvider provider,
string trueValue,
string falseValue
)
<ExtensionAttribute>
Public Shared Function ToString (
value As Boolean,
provider As IFormatProvider,
trueValue As String,
falseValue As String
) As String
public:
[ExtensionAttribute]
static String^ ToString(
bool value,
IFormatProvider^ provider,
String^ trueValue,
String^ falseValue
)
[<ExtensionAttribute>]
static member ToString :
value : bool *
provider : IFormatProvider *
trueValue : string *
falseValue : string -> string
Parameters
- value
- Type: SystemBoolean
The boolean value. - provider
- Type: SystemIFormatProvider
The format provider.
If null the default provider is used.
- 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