I was repeating knowledge about nested classes and I saw this:
In C#, the user is allowed to inherit a nested class from the outer class
I wonder did any one ever used it? what could be valid way of using class that inherit like that?
class A
{
class B:A
{
}
}