Can I smooth the hierarchy of objects in the Locales window?

In the Locals window or when hovering over an object, I would like to see all the properties of the object at the same level in the hierarchy.

I get things like this:

[-] sub [-] base BaseId SubId 

But I would like to see things like this:

 [-] sub BaseId SubId 

I would like this to be the way all classes are displayed.

This is different from IntelliSense, where all properties and methods are presented at the same level.

I use Visual Studio 2010 and C #, but this applies to older versions of VS and other languages.

+4
source share
1 answer

This is what I was looking for: http://msdn.microsoft.com/en-us/library/ms228992.aspx

You will probably have to use proxies of type, as they provide maximum flexibility. It looks like you can apply them to types that you did not create.

+1
source

Source: https://habr.com/ru/post/1403571/


All Articles