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: 765850183bda1117915227d320869f2042edfd6e (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 {
        protected internal void Foo (string text, sbyte value) { }
}