vote up 1 vote down star

I'm writing a class that returns both a DataTable and a IEnumerable. I cannot define the interface methods exactly the same except for return type. So, I wish I could create this interface (obviously, it doesn't compile):

interface IMyInterface
    {
        DataTable GetResults();
        IEnumerable<string> GetResults();
    }

So, how would you structure these two functions, rename them, multiple interfaces, parameters?

I'm just curious on how you guys would handle it, ty...

flag

71% accept rate
1  
Do you have a real need for them to have the same name? – ChaosPandion Oct 29 at 3:31

5 Answers

vote up 14 vote down check

I would do this:

interface IMyInterface
{
    DataTable GetResultsAsTable();
    IEnumerable<string> GetResultsAsSequence();
}

Obviously C# doesn't allow you to have two methods whose signatures differ by return type only (interestingly the CLR does allow this). With that in mind I think it would be best to give the methods common prefixes and append a suffix that indicates the return type.

link|flag
I think this is how I'm going to go with it. Thanks. – Steve Oct 29 at 13:38
vote up 1 vote down

You could keep the same method name by using an out parameter:

interface IMyInterface
{
     void GetResults(out DataTable results);
     void GetResults(out IEnumerable<string> results);
}
link|flag
I marked Andrews answer but I do like you're approach too. – Steve Oct 29 at 13:41
vote up 0 vote down

Whether you do this as an interface or as a regular class this won't compile because you have two methods with the same name with the same parameterless signature.

Besides, returning method results using two very different types have really bad design implications.

link|flag
vote up 0 vote down

I would rename the first method:

DataTable GetResultsDataTable();
link|flag
vote up 2 vote down

Can you do this?

interface IMyInterface    { 
   DataTable GetDTResults();        
   IEnumerable<string> GetIEResults();    
}
link|flag

Your Answer

Get an OpenID
or

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