8 lines
166 B
C#
Raw Normal View History

// CS0231: A params parameter must be the last parameter in a formal parameter list
// Line: 5
class Test
{
void Foo (int i, params object[] o, bool b) {}
}