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

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

using System;
[assembly:CLSCompliant (true)]

public class CLSClass {
        protected internal void Foo (string text, sbyte value) { }
}