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

cs3002-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e39b560aa6ac34a8e723d10d13e67a2afcc3481e (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3002-6.cs: Return type of 'I.Error()' is not CLS-compliant
// Line: 10

using System;
[assembly:CLSCompliant(true)]

[CLSCompliant(false)]
public interface I {
        [CLSCompliant(true)]
        ulong[] Error();
}