public enum ValueType| DATE | 0 | C# implementations should use DateTime objects. The time portion of the DateTime instance is ignored. |
| DATE_TIME | 1 | C# implementations should use DateTime objects. The time portion of the DateTime instance is ignored. |
| TIME_SPAN | 2 | C# implementations should use TimeSpan objects. |
| STRING | 3 | C# implementations should use strings. |
| INTEGER | 4 | C# implementations should use ints. |
| FLOAT | 5 | C# implementations should use floats or doubles. |
| BOOLEAN | 6 | C# implementations should use bools. |
| Description |
Returns the Description attribute of an enum. If Description is not an attribute
returns the .toString() value.
(Defined by EnumHelper) |
| GetAttributeOfTypeT |
Gets an attribute on an enum field value
(Defined by EnumHelper) |