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

cs0257.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72a31432ab8946fdd96e56e94ae7b9ce3af51e4e (plain)
1
2
3
4
5
6
// CS0257: An __arglist parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
    void Foo (__arglist, bool b) {}
}