blob: abd3c248e2377d63574f3b97e887d56b9453f2d8 (
plain)
1
2
3
4
5
6
7
8
|
// CS3009: `Days': base type `uint' is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror -warn:1
using System;
[assembly:CLSCompliant(true)]
public enum Days: uint {Sat=1, Sun, Mon, Tue, Wed, Thu, Fri};
|