blob: 95e549f8b1ccbe412da24a03d255f8a2437622f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS1061: Type `int' does not contain a definition for `C' and no extension method `C' of type `int' could be found. Are you missing an assembly reference?
// Line: 12
using System;
namespace TestEnum
{
public enum E
{
A = 0,
B = 1.
C = 2
}
}
|