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

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

[assembly:System.CLSCompliant(true)]

public interface I 
{
       ulong Error();
}