vote up 0 vote down star
2

The following code is just made up, is this possible to do with C#?

class A
{
    public int DoStuff()
    {
        return 0;
    }
}

class B
{
    public string DoStuff()
    {
        return "";
    }
}

class MyMagicGenericContainer<T> where T : A, B
{
    //Below is the magic <------------------------------------------------
    automaticlyDetectedReturnTypeOfEitherAOrB GetStuff(T theObject)
    {
        return theObject.DoStuff();
    }
}
flag

2 Answers

vote up 1 vote down check

Your wish is my command.

public interface IDoesStuff<T>
{
  T DoStuff();
}

public class A : IDoesStuff<int>
{
  public int DoStuff()
  {  return 0; }
}

public class B : IDoesStuff<string>
{
  public string DoStuff()
  { return ""; }
}
public class MyMagicContainer<T, U> where T : IDoesStuff<U>
{
  U GetStuff(T theObject)
  {
    return theObject.DoStuff();
  }
}

If you want less coupling, you could go with:

public class MyMagicContainer<U>
{
  U GetStuff(Func<U> theFunc)
  {
    return theFunc()
  }
}
link|flag
Thanks. A bit verbose but gets the job done. :) – aoooa Jun 11 at 19:26
I know what T means, but where did U come from? Are there other letters that I don't know about that mean something? – jasonh Jun 11 at 19:31
jasonh, generics can have any letter – aoooa Jun 11 at 19:39
@aoooa: What happens if I have a class U? – jasonh Jun 11 at 21:32
T is typically the name assigned to the first "type parameter". You get to choose the name of "type parameters" and can choose U or Bob if you like. – David B Jun 12 at 0:09
show 2 more comments
vote up 0 vote down

The method that ends up calling automaticlyDetectedReturnTypeOfEitherAOrB() would have to know the return type though. Unless you make the method return object. Then the calling method can get back whatever (int or string) and figure out what to do with it.

Another option is to do something like this: (sorry, I don't have VisStudio open to validate syntax or that it works right)

R GetStuff<R>(T theObject)
{
    return (R)theObject.DoStuff();
}

void Method1()
{
    int i = GetStuff<int>(new A());
    string s = GetStuff<string>(new B());
}
link|flag

Your Answer

Get an OpenID
or

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