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

cs3000.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7229611445fe1d39f00255cb75149a6522e2e063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs3000.cs: Methods with variable arguments are not CLS-compliant
// Line: 10

using System;

[assembly: CLSCompliant (true)]

public class M
{
    public void Method (__arglist)
    {
    }
}