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

cs0246-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5be9f6abdd8bb37644c42b83547cd52dd00b4f8 (plain)
1
2
3
4
5
6
// cs0246-2.cs: The type or namespace name `ErrorType' could not be found. Are you missing a using directive or an assembly reference?
// Line: 5

interface A {
        event ErrorType Test;
}