SyntaxFix
Write A Post
Hire A Developer
Questions
[DefaultValue(None)] public enum Orientation { None = -1, North = 0, East = 1, South = 2, West = 3 }
Then in the code you can use
public Orientation GetDefaultOrientation() { return default(Orientation); }