In C#, how many classes can you inherit from?
When you write:
using System.Web.UI;
is that considered inheriting from a class?
|
In C#, how many classes can you inherit from? When you write:
is that considered inheriting from a class?
| ||||
|
feedback
|
|
A using directive:
only means that if an identifier isn't in the local namespace, the namespace C# does not allow multiple inheritance -- you can only inherit from one class. However, you can implement as many interfaces as you'd like. | ||||
feedback
|
|
No, A For instance, if I add:
Then I can simply write:
Instead of:
Inheritance If all of my pages inherit from a base class, then that base class will need to inherit from the | |||
|
feedback
|
|
You can inherit from only one class. Writing 'using System.Web.UI' has nothing to do with inheritance. This statement just means that you want to 'use' the classes that are in the namespace System.Web.UI, so that you can directly write the class-name, instead of having it to prefix with the namespace-name. | |||
|
feedback
|
|
No.
C#, unlike C++, does not support multiple inheritance, therefore you can only derive it from one class (However, you can implement any number of interfaces) | |||
|
feedback
|
|
I'd like to add an addendum to the answer given by Jen. It's correct to say that C# doesn't support multiple inheritance, but it can be useful to know that you can implement multiple inheritance in .NET by ignoring the CLS (the Command Language Subsystem). It's nasty work, and involves you rolling your own vtables, but it is possible. | |||
|
feedback
|