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

cs3009-1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c238174cc3cf01d2d4f211f74b542cf8e6687ab9 (plain)
1
2
3
4
5
6
7
// cs3009.cs: 'Days': base type 'uint' is not CLS-compliant
// Line: 7

using System;
[assembly:CLSCompliant(true)]

public enum Days: uint {Sat=1, Sun, Mon, Tue, Wed, Thu, Fri};