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

cs3008-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdbcf7e2b760014039e6e9e6f1c96c7d97ab7542 (plain)
1
2
3
4
5
6
7
8
9
// cs3008.cs: Identifier 'I._()' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant(true)]

public interface I {
        void _();
}