Does C#.net supports multiple inheritance?
No. A class can inherit from only one base class, however a class can implements many interface, which servers some of the same purpose without increasing complexity. How many types of Access Modifiers. 1) Public – Allows the members to be globally accessible. 2) Private – Limits the member’s access to only the containing type. 3) Protected – Limits the member’s access to the containing type and all classes derived from the containing type. 4) Internal – Limits the member’s access to within the current project.