Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you restrict the type which can be used in custom
generic?



How do you restrict the type which can be used in custom generic?..

Answer / kishore.a

To restrict a type in Generic just specify the constraint
immediately following the method header, prior to the curly
braces of the method block:

For EX: you can restrict a type parameter to implement
IComparable

public class ConsoleTreeControl
{
// Generic method Show<T>
public static void Show<T>(BinaryTree<T> tree, int indent)
where T : IComparable
{
//Your Code

}
}

So this cannot implement IComparable interface.

Is This Answer Correct ?    6 Yes 2 No

Post New Answer

More C Sharp Interview Questions

What is difference between class and abstract class in c#?

0 Answers  


can multiple catch blocks be executed for a single try statement?

0 Answers   Siebel Systems,


why C# called C#

3 Answers  


How?s the DLL Hell problem solved in .NET?

1 Answers   Visual Soft,


What is the use of expression tree in c#?

0 Answers  


What?s the top .NET class that everything is derived from?

3 Answers  


How big is int16?

0 Answers  


What is wpf c#?

0 Answers  


What is an assembly in .net?

0 Answers  


What is cts, clr?

0 Answers  


Can an int be negative c#?

0 Answers  


Explain ACID rule of thumb for transactions.

3 Answers  


Categories