vote up 0 vote down star

How can I overload a method that takes a Generic List with different types as a parameter?

For example:

I have a two methods like so:

private static List<allocations> GetAllocationList(List<PAllocation> allocations)
{
    ...
}

private static List<allocations> GetAllocationList(List<NPAllocation> allocations)
{
    ...
}

Is there a way I can combine these 2 methods into one?

flag

2 Answers

vote up 3 vote down check

Sure can... using generics!

private static List<allocations> GetAllocationList<T>(List<T> allocations) 
   where T : BasePAllocationClass
{

}

This assumes that your "allocations", "PAllocation" and "NPAllocation" all share some base class called "BasePAllocationClass". Otherwise you can remove the "where" constraint and do the type checking yourself.

link|flag
I am using your suggestion, but how do I go about doing the type checking? I also need to iterate though the allocations parameter. I tried to use allocations.ForEach(delegate(PAllocation pa){...}); but I get an error that says Incompatible anonymous function signature. Any ideas? – Jon May 29 at 16:35
can you not just do (foreach var in allocations)? – womp May 29 at 16:43
vote up 1 vote down

If your PAllocation and NPAllocation share a common interface or base class, then you can create a method that just accepts a list of those base objects.

However, if they do not, but you still wish to combine the two(or more) methods into one you can use generics to do it. If the method declaration was something like:

private static List<allocations> GetCustomList<T>(List<T> allocations)
{
    ...
}

then you can call it using:

GetCustomList<NPAllocation>(listOfNPAllocations);
GetCustomList<PAllocation>(listOfPAllocations);
link|flag
the <NPAllocation> and <PAllocation> part can be omitted because the type will be inferred automatically – configurator May 29 at 16:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.