B
bill tie
Consider the following:
object myObject = new Object();
myObject = new { foo = "fooStr", bar = "barStr" };
How do I retrieve the value of foo from myObject?
object myObject = new Object();
myObject = new { foo = "fooStr", bar = "barStr" };
How do I retrieve the value of foo from myObject?