Click or drag to resize
EnumHelperGetDefaultValueTEnum Method
Gets the default value fo the specified enum type.

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 9.0.0
Syntax
C#
public static TEnum GetDefaultValue<TEnum>()
where TEnum : struct, new(), IConvertible, IComparable, IFormattable

Type Parameters

TEnum
Enum type

Return Value

Type: TEnum
Returns the default enum value, if it is specified using the EnumDefaultValueAttribute. Otherwise returns the first declared enum value.
See Also