I was looking through some C# code for extending language support in VS2010 (Ook example). I saw some classes called internal sealed class
internal sealed class
What do these do?
An internal sealed class is one that is:
internal sealed
internal - Only accessible from within the same assembly sealed - Cannot be subclassed
internal
sealed
In other words, there's no way for you to use it directly.