.Net Framework Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2747 Page Views: 

Does C# support multiple-inheritance?



Posted By: Avi Date: 28 August 2009 06:45:21 AM
 Answer:

No


Posted By: eTechPlanet


Date: 28 August 2009 06:45:21 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 0Y3Z3L
Related Questions
.Net Framework : Can we force garbage collection in .Net?

Can we force garbage collection in .Net?

Yes. Set all references to null and then call System.GC.Collect().
Category: .Net Framework Date: 8/28/2009 4:58:58 PM
.Net Framework : What is Marshaling?

What is Marshaling?

Marshaling performs the necessary conversions in data formats between managed and unmanaged code. CL....
Category: .Net Framework Date: 8/28/2009 7:04:46 AM
.Net Framework : What is the top .Net class that everything is derived from?

What is the top .Net class that everything is derived from?

System.Object
Category: .Net Framework Date: 8/28/2009 7:01:44 AM
.Net Framework : Can we allow a class to be inherited, but prevent the method from being overridden?

Can we allow a class to be inherited, but prevent the method from being overridden?

Yes. Define the class as public and make the method sealed.
Category: .Net Framework Date: 8/28/2009 6:59:11 AM
.Net Framework : What is an interface class?

What is an interface class?

Interfaces, like classes, define a set of properties, methods, and events. But unlike classes, inter....
Category: .Net Framework Date: 8/28/2009 6:56:01 AM