I\'m trying to create a constant of type Enum but I get a error.. My enum is:
Enum
public enum ActivityStatus { Open = 1, Close = 2 }
To avoid from the Circular Definition Problem in C#, You can reference/call the variable/type/member etc with full qualified name like
Namespace..Member/Type/ etc
Hope you will fix the error by now.