vote up 8 vote down star
1

I've created two classes, with one of them having an implicit cast between them:

public class Class1
{
    public int Test1;
}

public class Class2
{
    public int Test2;

    public static implicit operator Class1(Class2 item)
    {
        return new Class1{Test1 = item.Test2};
    }
}

When I create a new list of one type and try to Cast<T> to the other, it fails with an InvalidCastException:

List<Class2> items = new List<Class2>{new Class2{Test2 = 9}};
foreach (Class1 item in items.Cast<Class1>())
{
    Console.WriteLine(item.Test1);
}

This, however, works fine:

foreach (Class1 item in items)
{
    Console.WriteLine(item.Test1);
}

Why is the implicit cast not called when using Cast<T>?

flag

2 Answers

vote up 3 vote down check

Because, looking at the code via Reflector, Cast doesnt attempt to take any implicit cast operators (the LINQ Cast code is heavily optimised for special cases of all kinds, but nothing in that direction) into account (as many .NET languages won't).

Without getting into reflection and other things, generics doesnt offer any out of the box way to take such extra stuff into account in any case.

EDIT: In general, more complex facilities like implicit/explict, equality operators etc. are not generally handled by generic facilities like LINQ.

link|flag
vote up 1 vote down

Thanks for that I was about to use that exact case somewhere. You have saved me a pile of time. As a possible solution to your problem you could use ConvertAll<> instead, like so:

foreach (Class1 item in items.ConvertAll<Class1>((i) => (Class1)i))
{
     Console.WriteLine(item.Test1);
}

EDIT: or if you want to be more explicit that the cast is implicit then this works too:

foreach (Class1 item in items.ConvertAll<Class1>(i => i))
{
     Console.WriteLine(item.Test1);
}
link|flag
Interesting, you can probaly remove the explicit cast in that case, which would make it clear that the casting is to be implicit? In not, you could use Select() – Ruben Bartelink Apr 30 at 21:06
Your right... that works too. – David McEwing Apr 30 at 21:55
Ok, you win... you can't remove it completely because the ConvertAll<> requires a delegate to be passed to it. However a default i=>i works. Though now the readability is starting to be lost and thus i prefer my first solution, or just (i => (Class1)i) where you are telling the reader a bit more about what is happening. – David McEwing Apr 30 at 22:28
I wanted to keep the set I returned an IEnumerable<> without converting it to a list, so I ended up doing this: return items.Select(i => (Class1)i); I know I didn't mention that in the question, but I wanted it that way in my real code. By using this method I don't have to worry about it creating a separate list. – Ryan Versaw May 5 at 14:36
1  
Rather than starting with a List<>, it was starting with an IEnumerable<>. I would have to modify your suggestion to read: "return items.ToList().ConvertAll<Class1>(i => i);" It seems unnecessary in my situation, though I can see the benefit in others. The place I'm using it shouldn't cause any confusion either - converting DataSet generated classes to standalone classes which are used throughout the project. I do value other opinions though, so thanks for your input! – Ryan Versaw May 6 at 18:03
show 2 more comments

Your Answer

Get an OpenID
or

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