Click or drag to resize
NullableStructExtensionToStringT Method (NullableT, String)
Formats a nullable struct or returns an empty string.

Namespace: ArtDatabanken
Assembly: ArtDatabanken (in ArtDatabanken.dll) Version: 1.3.0.0 (1.3.0.0)
Syntax
public static string ToString<T>(
	this Nullable<T> source,
	string defaultValue
)
where T : struct, new(), IFormattable

Parameters

source
Type: SystemNullableT
The value.
defaultValue
Type: SystemString
The string to show when the source is null. If null an empty string is returned.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:ArtDatabanken.NullableStructExtension.ToString``1(System.Nullable{``0},System.String)"]

Return Value

Type: String
The formatted string or an empty string if the source is null.

Usage Note

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