When i declare
object o = new { name = "Bruce",Age=21 };
Console.WriteLine("name={0},age={1}",???,??? );
Now how can i print value of name and age?
|
|
When i declare
Now how can i print value of name and age?
|
||
|
|
|
|
Dont assign to an object variable, use var:
|
||||||
|
|
|
While not accessing the properties directly (see LBushkin's answer). ToString() is overloaded to list the content of all of the properties
|
||
|
|