Class EnumWrapper<T>
A strongly typed version of the EnumWrapper for a specific Enum type. This ensures it holds the enum value correctly typed
Implements
System.IEquatable<EnumWrapper>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: LemonEdge.Utils
Assembly: Utils.dll
Syntax
public class EnumWrapper<T> : EnumWrapper, IEquatable<EnumWrapper>
Type Parameters
Name | Description |
---|---|
T | The type of Enum |
Properties
ObjValue
Returns the Value holding the actual enum value
Declaration
public override object ObjValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Overrides
Value
The actual enum value being wrapped
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T |
Implements
System.IEquatable<T>