This extension adds a Visualizer for WeakReference Why ?Because when we need to get the code from an object while debugging, the only way is to use WeakReference on quick watch to get the object instance and dump it! (we can't make a visualizer for "object" type) When?When you need to get source code from the objet (like automated test building) How?While debugging : -add a breakpoint -select the object you want -right click and select "Get Object code"
|