I have this code:
object test = new {a = "3", b = "4"};
Console.WriteLine(test); //I put a breakpoint here
How can I access a
property of test
object? When I put a breakpoint, visual studio can see the variables of this object... Why can't I? I really need to access those.