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

cs0103.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b845182c4d960bd97b475f8ea72d493c085cfb8d (plain)
1
2
3
4
5
6
7
8
9
// cs0103.cs: The name 'count' does not exist in the class or namespace 'ClassMain'
// Line: 6

class ClassMain {
        public static void Main () {
                count++;
        }
}