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: 9e609d1015c32c94289b34848886a9330ee529cd (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)
        {
        }
       
}