Click or drag to resize
StringExtensionToString Method (String, IFormatProvider, String, Boolean)
Returns the str or the defaultValue if the str is null.

Namespace: ArtDatabanken
Assembly: ArtDatabanken (in ArtDatabanken.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax
public static string ToString(
	this string str,
	IFormatProvider provider,
	string defaultValue,
	bool considerWhiteSpaceIsEmpty = false
)

Parameters

str
Type: SystemString
The string.
provider
Type: SystemIFormatProvider
The format provider. If null the default provider is used.
defaultValue
Type: SystemString
The string to show when the source is null. If null an empty string is returned.
considerWhiteSpaceIsEmpty (Optional)
Type: SystemBoolean
if set to true and str is white space, then the defaultValue is returned.

Return Value

Type: String
The str or the defaultValue if the str is null.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. 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