Table of Contents

Class EnumStringRepresentationExtensions

Namespace
CMS.Helpers
Assembly
CMS.Helpers.dll

Provides extension methods for working with the Enum types.

public static class EnumStringRepresentationExtensions
Inheritance
object
EnumStringRepresentationExtensions

Methods

ToEnum<TEnum>(string)

Converts the string representation of the enum value to the actual enum value.

public static TEnum ToEnum<TEnum>(this string stringRepresentation) where TEnum : struct, IConvertible, IComparable, IFormattable

Parameters

stringRepresentation string

String representation of the enum value

Returns

TEnum

Returns the enum value if it is specified using the EnumStringRepresentationAttribute. Otherwise returns the default enum value.

Type Parameters

TEnum

Enum type

ToStringRepresentation(Enum)

Converts the enum value to it's string representation.

public static string ToStringRepresentation(this Enum value)

Parameters

value Enum

Enum value

Returns

string

Returns the string representation of the enum value if it is specified using the EnumStringRepresentationAttribute. Otherwise returns the enum field name.

ToStringRepresentation<TEnum>(TEnum)

Converts the enum value to it's string representation.

public static string ToStringRepresentation<TEnum>(this TEnum value) where TEnum : struct, IConvertible, IComparable, IFormattable

Parameters

value TEnum

Enum value

Returns

string

Returns the string representation of the enum value if it is specified using the EnumStringRepresentationAttribute. Otherwise returns the enum field name.

Type Parameters

TEnum

Enum type