I have the following classes with an implicit cast operator defined:

class A
{
    ...
}
class B
{
    private A m_a;

    public B(A a)
    {
        this.m_a = a;
    }

    public static implicit operator B(A a)
    {
        return new B(a);
    }
}

Now, I can implicitly cast A to B.

But why can't I implicitly cast A[] to B[] ?

static void Main(string[] args)
{
    // compiles
    A a = new A();
    B b = a;

    // doesn't compile
    A[] arrA = new A[] {new A(), new A()};
    B[] arrB = arrA;
}

Thanks, Malki.

link|improve this question

70% accept rate
feedback

3 Answers

up vote 1 down vote accepted

As Mehrdad Afshari mentioned, you're out of luck doing this implicitly. You'll have to get explicit, and it'll involve an array copy. Thankfully, you can probably do it with a one-liner:

arrB = arrA.Cast<B>().ToArray();

Although if you only want to iterate arrB in a foreach statement, you can avoid the copy by omitting ToArray()

link|improve this answer
Array.ConvertAll has this covered already msdn.microsoft.com/en-us/library/exc45z53.aspx – bottlenecked Jun 16 '10 at 14:01
@bottlenecked: excellent point. ConvertAll will do the same thing as my example. It won't, however, allow for iteration against the array as a different type without copying the array, which a simple call to Cast will allow. If a copy is needed, ConvertAll. If iteration is needed, Cast. – Randolpho Jun 16 '10 at 14:41
feedback

Array covariance only works for reference types and in the inheritance hierarchy (note that it's not a representation-changing conversion: just a set of pointers with identical size interpreted differently.) It will not work for value types and user defined conversions.

link|improve this answer
Also, covariance of that sort will only work in .NET 4. – Randolpho Jun 15 '10 at 18:04
2  
@Randolpho: Not true. Array covariance has been around since .NET 1.0. It's not statically checked safe co/contra-variance for generics that's new in .NET 4. – Mehrdad Afshari Jun 15 '10 at 18:05
Heh... Good point. – Randolpho Jun 15 '10 at 18:07
Can't I write an implicit cast method that casts from A[] to B[] ? I don't mind having to loop through the array and casting each object individually into the other array. Can't it be done? (I can't seem to find the syntax for that...) – Malki Jun 15 '10 at 18:07
@Malki: if you don't mind a loop and cast/copy, just use my suggested answer; the methods I mention will do the loop and copy for you. – Randolpho Jun 15 '10 at 18:12
show 2 more comments
feedback

Imagine for a moment if Arrays used the same syntax as other collections in .Net, and what you're trying to compare is an Array<A> with an Array<B>. You wouldn't compare a List<A> to a List<B>. Well, that's essentially what you're trying.

I'd recommend using a simple extension method to get the result you want, you'll need to change your syntax slightly to say 'B[] arrB = arrA.ToBArray();`

static class ArrayCast {
    public static B[] ToBArray(this A[] source) {
        var result = new B[source.Length];
        for (int i = 0;i < source.Length;i++)
            result[i] = source[i];
        return result;
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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