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: 06bd46ada559f39f35d6b9f72d4b9d499b5f28cf (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;
	}
}