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

cs3001-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48ce5e089df4126df1311ec16d6ef686e47c1109 (plain)
1
2
3
4
5
6
7
8
9
// cs3001.cs: Argument type 'sbyte' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant(true)]

public class CLSClass {
        public delegate int MyDelegate(sbyte i);
}