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

cs0231.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bc7c18d05b75307df9e3d99c071ae12165f96fd (plain)
1
2
3
4
5
6
7
// cs0231.cs: A params parameter must be the last in a formal parameter list
// Line: 5
class Test
{
        void Foo (params object[] o, bool b) {}
}