Scope of a nested class is limited by the scope of its (outer) enclosing class . If nothing is specified, the nested class is private (default). Any class can be inherited into another class in C# (including a nested class). The user can inherit a nested class from outer class.5 Ara 2019
Read moreWhat is the use of nested class?
As mentioned in the section Nested Classes, nested classes enable you to logically group classes that are only used in one place, increase the use of encapsulation, and create more readable and maintainable code .
Read more