Click or drag to resize
NullableStructExtensionToStringT Method (NullableT, String, IFormatProvider, String)
Formats a nullable struct.

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 format,
	IFormatProvider provider,
	string defaultValue
)
where T : struct, new(), IFormattable

Parameters

source
Type: SystemNullableT
The value.
format
Type: SystemString
The format string. If null use the default format defined for the type of the IFormattable implementation.
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.

Type Parameters

T

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

Return Value

Type: String
The formatted string or the default value 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