vote up 4 vote down star
1

Aloha

I have a generic method with this (dummy) code (yes I'm aware IList has predicates, but my code is not using IList but some other collection, anyway this is irrelevant for the question...)

static T FindThing<T>(IList collection, int id) where T : IThing, new()
{
    foreach T thing in collecion
    {
        if (thing.Id == id)
            return thing;
    }
    return null;  // ERROR: Cannot convert null to type parameter 'T' because it could be a value type. Consider using 'default(T)' instead.
}

This gives me a build error "Cannot convert null to type parameter 'T' because it could be a value type. Consider using 'default(T)' instead." Can I avoid this error?

-Edoode

flag
why is this community wiki? – vitule Nov 19 '08 at 15:02
Cause I thought that makes this question community editable? – edosoft Nov 19 '08 at 15:15

6 Answers

vote up 22 vote down check

Two options:

  • Return default(T) which means you'll return null if T is a reference type (or a nullable value type), 0 for int, '\0' for char etc
  • Restrict T to be a reference type with the where T : class constraint and then return null as normal
link|flag
vote up 1 vote down
return default(T);
link|flag
This link: msdn.microsoft.com/en-us/library/… should explain why. – Harper Shelby Nov 19 '08 at 14:59
Damn it, I would've saved a lot of time had I known about this keyword - thanks Ricardo! – Paul Betts Nov 19 '08 at 15:06
vote up -1 vote down

Take the recommendation of the error....and either user default(T) or new T.

You will have to add in a comparison in your code to ensure htat it was a valid match if you go that route.

Otherwise, potentially consider an output parameter for "match found".

link|flag
vote up 2 vote down

Your other option would be to to add this to the end of your declaration:

    where T : class
    where T: IList

That way it will allow you to return null.

link|flag
vote up 2 vote down

You can just adjust your constraints:

where T : class, IDisposable

Then returning null is allowed.

link|flag
Thanks. I cannot choose 2 answers as the accepted solution, so I choose John Skeet's cause his answer has two solutions. – edosoft Nov 19 '08 at 15:16
vote up 1 vote down

Add the class constraint as the first constraint to your generic type.

static T FindThing<T>(IList collection, int id) where T : class, IThing, new()
link|flag
Thanks. I cannot choose 2 answers as the accepted solution, so I choose John Skeet's cause his answer has two solutions. – edosoft Nov 19 '08 at 15:18

Your Answer

Get an OpenID
or

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