// 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) {}}