While inspecting the the .net object model in the Object Browser window, I came across the lack of information on sealed classes.
If for instance, one navigates to the mscorlib container -> System namespace -> String class, the details pane displays the following:
public class String
Member of SystemSummary:
Represents text as a series of Unicode characters.Attributes:
[System.Runtime.InteropServices.ComVisibleAttribute(true), System.Reflection.DefaultMemberAttribute("Chars")]
It seems I can only ascertain if a class is sealed either through the Code Definition Window or, of course, by trying to derive from it.
Yet, while following Apress - Pro C# 2008 and the .Net 3.5 Platform
, by Andrew Troelsen, the author shows on page 188 how the object browser display the sealed status:
Has this information been removed from Visual Studio 2008 object browser? Could I get it back somehow?
Although the author mentions Visual Studio 2008 throughout the text, that screenshot must be from a previous version. The book is in fact in its 4th Edition, and started back in 2001 with .Net 1.0 Beta 2.