Tip
Use the extension method
AsITypedPropertyT(DynamicProperty)
to cast a DynamicProperty to an ITypedPropertyT
instance.
T Value { get; set; }
Property Value As T
Get
Set
property T Value {
T get ();
void set (T value);
}
abstract Value : 'T with get, set
This property supports high performance scenarios: boxing and unboxing of value types can be omitted in this way.
InvalidOperationException | Record is null. Assign a CsvRecord instance to Record before accessing this property. |
InvalidCastException | When setting the value, value is null and AcceptsNull is false. |
FormatException | When getting the value, parsing fails and Throwing is true. - or - When setting the value, the converter uses an invalid format string. |