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

Can property be a generic type?



Posted By: Avi Date: 14 October 2010 12:09:48 PM
 Answer:

Yes


Posted By: avibtech


Date: 14 October 2010 12:09:48 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image VXmFF3
Related Questions
.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
.Net Framework : What is an abstract class?

What is an abstract class?

A class that cannot be instantiated. An abstract class is a class that must be inherited and have th....
Category: .Net Framework Date: 8/28/2009 6:52:20 AM
.Net Framework : Can we prevent a class from being inherited by another class in C#?

Can we prevent a class from being inherited by another class in C#?

Yes. The keyword "sealed" is used to prevent a class from being inherited.
Category: .Net Framework Date: 8/28/2009 6:48:43 AM