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

cs0120.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c11560612ee7db8f15ea594ca57cb4727ef2d513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0120: An object reference is required to access non-static member `test.method()'
// Line: 11

class test {

	void method ()
	{
	}
       
	public static int Main (string [] args){
		method ();
		return 1;
	}
}