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

cs0674.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d262fb108180a1b52e0f996edb8d658139ac7e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0674.cs: Do not use `System.ParamArrayAttribute'. Use the `params' keyword instead
// Line: 8

using System;

public class X
{
        public void Error ([ParamArray] int args)
        {
        }
       
}