vote up 5 vote down star
1

There's a special name for it, but I can't remember what it is. There are two different terms, one for casting an array of a subclass to an array of its superclass, and the other way around.

flag

72% accept rate
Can we (community) un-accept an answer as wrong? – zvolkov Aug 2 at 0:08
The community (we) should just downvote it, everything else should follow itself. Probably. – kek444 Aug 2 at 0:30

3 Answers

vote up 3 vote down check

Array Upcasting and Array Downcasting.

EDIT: Covariance and Contravariance is ability to treat certain types as same or not the same depending on composition and inheritance semantics. This has nothing to do with casting arrays, which just happen to be one case where co-variance comes into play.

link|flag
You know, that would have been a whole heck of a lot easier to remember than Co-variance and Contra-variance. Maybe we should change the terminology? lol – Max Schmeling Jul 31 at 19:40
vote up 0 vote down

Boxing and Unboxing?

link|flag
No, it's a term that has to do with casting arrays. – Max Schmeling Jul 31 at 19:17
I honsetly cant think of any term that would pertain to arrays specifically. +1 for interesting question. – Neil N Jul 31 at 19:26
vote up 3 vote down

Co-variance and contra-variance. Probably.

link|flag
@Steve: I think you're right. More information about Covariance and Contravariance in C# here: blogs.msdn.com/ericlippert/archive/… – Grant Wagner Jul 31 at 19:23
I included the link because Part One talks about Covariance and Contravariance in more general terms, in case people want some background on what they are. – Grant Wagner Jul 31 at 19:24
That's what I was trying to think of. THanks. – Max Schmeling Jul 31 at 19:27
I guess from reading that msdn blog post it doesn't apply to arrays specifically. But it is what I was thinking of. – Max Schmeling Jul 31 at 19:43
@Max: Part Two of Eric's series deals specifically with Array Covariance (but not Contravariance) (in C#): blogs.msdn.com/ericlippert/archive/… – Grant Wagner Jul 31 at 20:03
show 1 more comment

Your Answer

Get an OpenID
or

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