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

cs3003.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 920c20ef9db6f408a34a867947f89b3318e5c130 (plain)
1
2
3
4
5
6
7
8
9
// cs3003.cs: Type of 'CLSClass.value' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant(true)]

public class CLSClass {
        protected uint value;
}