vote up 0 vote down star

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?

flag

2 Answers

vote up 6 vote down check

Dont assign to an object variable, use var:

var o = new { name = "Bruce", Age = 21 };
Console.WriteLine( "name={0},age={1}, o.name, o.Age );
link|flag
This is only possible in C# 3.0 upwards... – James Oct 15 at 14:33
@James: Anonymous types in C# only exist beginning in v 3.0 of the language. So to use them you need implicitly typed variables, which is one of the reasons var was introduced. – LBushkin Oct 15 at 14:38
ofcourse I am using C# 3.0 only,so it would be helpful,Thanks to Bushkin. – linqfying Oct 15 at 14:40
vote up 3 vote down

While not accessing the properties directly (see LBushkin's answer). ToString() is overloaded to list the content of all of the properties

var o = new { name = "Bruce", Age = 21 };
Console.WriteLine(o);// { name = Bruce, Age = 21 }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.