I have a method which takes params object[] such as:
void Foo(params object[] items) { Console.WriteLine(items[0]); }
When I pass two o
You need to encapsulate it into another object[] array, like this:
Foo(new Object[] { new object[]{ (object)"1", (object)"2" }});