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

cs0582.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87bd1641ca11e53eebc7ddc19c3a8248aaa22ef4 (plain)
1
2
3
4
5
6
7
8
// cs0582.cs: Conditional not valid on interface members
// Line: 5

interface Interface {
        [System.Diagnostics.ConditionalAttribute("DEBUG")]
        void Method ();
}