Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a bit confused about the following.

Given this class:

    public class SomeClassToBeCasted
    {
        public static implicit operator string(SomeClassToBeCasted rightSide)
        {
            return rightSide.ToString();
        }
    }

Why is an InvalidCastException thrown when I try to do the following?

IList<SomeClassToBeCasted> someClassToBeCastedList 
     = new List<SomeClassToBeCasted> {new SomeClassToBeCasted()};
IEnumerable<string> results = someClassToBeCastedList.Cast<string>();

foreach (var item in results)
{
     Console.WriteLine(item.GetType());
}
share|improve this question

2 Answers

up vote 16 down vote accepted

Because Cast() doesn't deal with user-specified casts - only reference conversions (i.e. the normal sort of conversion of a reference up or down the inheritance hierarchy) and boxing/unboxing conversions. It's not the same as what a cast will do in source code. Unfortunately this isn't clearly documented :(

EDIT: Just to bring Jason's comment into the post, you can work around this easily with a projection:

IEnumerable<string> results = originalList.Select(x => (string) x);
share|improve this answer
3  
And, to add, you can get "around" this with IEnumerable<string> results = someClassToBeCastedList.Select(x => (string)x); – Jason Jan 14 '10 at 16:14

If only needed for lists, you can do

IEnumerable<string> results =
        someClassToBeCastedList.Select(itm => itm.ToString());

instead.

share|improve this answer
1  
This doesn't even use the user-defined cast that the OP defined. – Jason Jan 14 '10 at 16:22
Yes, that's what I meant about the lists. It depends on if that cast operator functionality is needed in other places too. – herzmeister Jan 14 '10 at 17:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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