When I am in debug mode, I see an object filled with values(objectInMemory). I want VS to automatically create a c# initialization code like this with the exact values that are present now in debug mode.
var object = new objectInMemory{ field1= 1, field2="text", .... } So that I can copy it, stop debugging and hard-code these values in mock (for example)
is it possible with VS or any other third party tool?