This question is locked. New answers and comments are not allowed.
This works fine:
| public abstract class Scope |
| { |
| private enum AccessOptions |
| { |
| CurrentOnly = 0, |
| AllAvailable = 1, |
| } |
| } |
But this doesn't:
| public abstract class Scope<T> |
| { |
| private enum AccessOptions |
| { |
| CurrentOnly = 0, |
| AllAvailable = 1, |
| } |
| } |
JustCode gives the following false error:
| C#: An instance of type 'ConsoleApplication12.Scope | Program.cs | ConsoleApplication12 | 18 | 17 |