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

cs1558.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64c426f76e9c824b187a8eabeb0e79a71a677286 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1558: 'MainClass' does not have a suitable static Main method
// Line: 5
// Compiler options: -main:MainClass

public class MainClass
{
	public static bool Main() 
	{
	    return false;
	}
}