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

cs0119.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21b8fb88ef740b2d5e7fb9b32c5d452c925ed8c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0119.cs: 'Test.E()' is a 'method', which is not valid in the given context
// Line: 14

using System;

public class Test
{
    public static void E () 
    { 
    }

    public static void Main () 
    {
        Console.WriteLine(E.x);
    }
}