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

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

using System;
[assembly:CLSCompliant(true)]

public interface I {
        UIntPtr Error { get; }
}