Click or drag to resize
BooleanExtensionToString Method (Boolean, IFormatProvider, String, String)
Returns a string description for a boolean value.

Namespace: ArtDatabanken
Assembly: 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
)

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: String
A 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