Gets the scalar property type.

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

Syntax

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

Field Value

The property list type.

Remarks

Holds the same value as PropertyType except when the property is a list type such as List<(Of <(<'T>)>)>. For list properties the generic type T is returned (i.e. the scalar type contained by the list).

See Also