C# FAQ 2
1.Does C# support multiple-inheritance?Ans. No! It may be achieved however, using interfaces.2.Who is a protected class-level variable available to?Ans.It is available to any sub-class (a class inheriting this class).3.Are private class-level variables inherited?Ans. Yes, but they are not accessible. Although they are not visible or accessible via the class interface, they are inherited. 4.Describe...