Gets the property type to use for formatting purposes.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public Type FormatType { get; }
Visual Basic
Public ReadOnly Property FormatType As Type
	Get
Visual C++
public:
property Type^ FormatType {
	Type^ get ();
}

Field Value

Return Value

Remarks

In most cases this holds the same type as PropertyType. However, this property also returns the underlying or contained type for Nullable<(Of <(<'T>)>)> and List<(Of <(<'T>)>)> properties. This is the type passed to PropertyFormatter when the property value to/from a string.

See Also