One thing that always bugged me, is that I do not see the base type in Visual Studio. I just stumbled on this, because I tried to cast a System.Windows.Forms.MenuItem to a System.Windows.Forms.Control
In eclipse the "intellisense" (or whatever it is called) shows me while exploring the members of a class for each member from which base class it is inherited.
In Visual Studio I cannot see the base class, even if I use the Objectbrowser or the help.
The only solution I found is to use at runtime:
Console.WriteLine(obj.GetType.BaseType)
Console.WriteLine(obj.GetType.BaseType.BaseType)
Console.WriteLine(obj.GetType.BaseType.BaseType.BaseType)
...
until I reach System.Object(). Is there a way to query the base type tree of a class at Design Time?