Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0266.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cac378958982f53d4bfe7a293de5f63baf0345ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// cs0266.cs: Cannot implicitly convert type 'Foo.MyEnumType' to 'uint'. An explicit conversion exists (are you missing a cast?)
// Line: 10

public class Foo {
  enum MyEnumType { MyValue }

  public void Bar ()
  {
    uint my_uint_var = 0;
    switch (my_uint_var) {
    case MyEnumType.MyValue:
      break;
    default:
      break;
    }
  }

  static void Main () {}
}