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

cs0629.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3513dfe61936c4226d29747557247b7124ae6204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0629.cs: Conditional member 'DerivedClass.Show(int)' cannot implement interface member 'IFace.Show(int)'
// Line: 12

interface IFace
{
        void Show (int arg);
}

class DerivedClass: IFace
{
        [System.Diagnostics.Conditional("DEBUG")]
        public void Show (int arg) {}
}