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

cs0017.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 084e38ee44f4e253432dd67ec9e92977a0847277 (plain)
1
2
3
4
5
6
7
8
9
// CS0017: Program `cs0017.exe' has more than one entry point defined: `X.Main()'
// Line: 7
class X {
static void Main () {}
}
class Y {
static void Main () {
}
}