Reputation: 3
//LINQPad version 4.31 - for me this code takes 1 minute and 40 seconds to execute. Can anyone else //confirm / explain whats going on
var v = new {Name="jon",Age=33};
v.Age.Dump();
v.GetType().Dump();
Upvotes: 0
Views: 214
Reputation: 43021
It's instant for me with V4.38.03.
The output from v.GetType().Dump();
is quite complex due to the anonymous type. I expect something has been improved in the latest version.
Upvotes: 1