vote up 3 vote down star
2

I have a custom list which inherits from Generic.List<T> like this:

public class TransferFileList<T> : List<TransferFile> { .. }

When I set (where 'Files' is a TransferFileList<T>):

var files = uploadResponse.Files.Where(x => !x.Success).ToList()

the 'files' object resolves as System.Collections.Generic.List<TransferFile>, not TransferFileList<T>, which is what I would expect as it was what was being filtered through the Where, so how could I successfully return a list of TransferFileList<T> into 'files'?

I did try:

var files = uploadResponse.Files.Where(x => !x.Success).ToList() 
as TransferFileList<TransferFile>;

but using that safe cast, it just resolves as null.

Thanks guys and gals.

flag

80% accept rate
What do you get if "var files = uploadResponse.Files.Where(x => !x.Success)" ? – Kirk Broadhurst Oct 12 at 1:49
@Kirk OP will get an IEnumerable<TransferFile> – Rex M Oct 12 at 1:51
System.Linq.Enumerable+WhereListIterator`1[TransferFile] – GONeale Oct 12 at 1:52

3 Answers

vote up 2 vote down check

First, I have to ask why you are inheriting from List<T>? 99% of the time that's a bad idea.

If you want to extend the functionality of a list, use extension methods:

public static something PrintErrors(this List<TransferFile> list)
{
    //do your printing logic
}

On to the answer: ToList() operates on an IEnumerable<T> and converts the members of the sequence to a List of the same type. Since you inherit from List<T> which implements IEnumerable<T>, that's what happens there.

Where() works the same way - operates on an IEnumerable<T> and returns an IEnumerable<T>.

To get some arbitrary list-like object back, like you have, you need to add the items in a sequence to your custom list, like so:

var myFiles = new TransferFileList<TransferFile>();
myFiles.AddRange(originalFileList.Where(condition));
link|flag
Why is it bad Rex? Hopefully I'm 1% :) I have a PrintErrors() method which returns any of my response's attached errors as a print-friendly string. – GONeale Oct 12 at 1:54
@GONeale because nothing works like you expect it to when you inherit from List, just like this situation. See my revised answer for an alternative. – Rex M Oct 12 at 1:58
Very good point there Rex on the x-method, however can they touch instance variables? I don't think so as they exist outside of the instance, I have a line like this in printErrors: <pre>string internalErrorMessage = StoreErrorBase.GetMessage(file.Error);</pre> (file.Error) being an 'Error' property on the instance of 'TransferFile'. – GONeale Oct 12 at 1:59
@GONeale an extension method on a list has access to all the public members of the underlying list and all the items in the list. – Rex M Oct 12 at 2:01
Thanks Rex, reluctantly I guess I have to introduce a new variable and new list assignment like you state. No problem though if it's the preferred method! – GONeale Oct 12 at 2:02
show 4 more comments
vote up 1 vote down

You can add an extension method for IEnumerable<TransferFile> to handle that scenario:

public static TransferFileList ToTransferFileList(
    this IEnumerable<TransferFile> files)
{
    return new TransferFileList(files);
}

// ...

var files = uploadResponse.Files.Where(x => !x.Success).ToTransferFileList();

This provides you with the TransferFileList instead of just a List<TransferFile>. Note the reason your as returns null is because while TransferFileList is a List<TransferFile>, the same does not hold in the other direction. That is, your List<TransferFile> is NOT a TransferFileList object.

I agree with @RexM that any attempt at subclassing List<T> be avoided due to the multitude of pitfalls associated. I suggest Composition (Has-A rather than Is-A) or sticking with the base class library collections instead.

link|flag
Downvote reason? – sixlettervariables Oct 12 at 1:53
(15 letter spacer) Not me. – GONeale Oct 12 at 1:54
We don't know if TransferFileList has no ctor that takes a sequence, and even if it did, it's treating the symptom not the cause of the problem. – Rex M Oct 12 at 2:00
He may genuinely need additional functionality found in TransferFileList. I agree though that composition would serve him better than inheritance. – sixlettervariables Oct 12 at 2:06
Thanks for your help six. – GONeale Oct 12 at 2:14
vote up 0 vote down

Thanks guys.

I like SLV's extension approach, but is there any other straight casting approach?

If not I might just go with the reverted in-line approach I was hoping to avoid:

var transferFiles = new TransferFileList<TransferFile>();
if (files != null) 
  transferFiles.AddRange(files);
link|flag

Your Answer

Get an OpenID
or

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