ceciliaSHARP
ceciliaSHARP

Reputation: 1008

How to access a private variable in debugging

is there any way to see the values of private varibles while debugging given that that variable is in a class that is compiled to an dll and not possible to edit?

Upvotes: 0

Views: 1940

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1500375

The Visual Studio debugger should already show you those variables when you inspect an instance of the type. Is it not doing so?

Upvotes: 4

Related Questions