If I have two objects, foo and bar, delared using object initializer syntax...
object foo = new { one = "1", two = "2" };
object bar = new { three = "3", four = "4" };
Is it possible to combine these into a single object, which would look like this...
object foo = new { one = "1", two = "2", three = "3", four = "4" };