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

cs3014.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d24c5170297305cecc7b01b0b6e8f5a23042abdc (plain)
1
2
3
4
5
6
7
8
9
// cs3014.cs: 'I.Valid(bool)' cannot be marked as CLS compliant because the assembly is not marked as compliant
// Line: 8

using System;

public interface I {
        [CLSCompliant (true)]
        void Valid (bool arg);
}