vote up 0 vote down star

I am looking for a one liner that transforms List<T> into object[]. It's one liner, so I am not interesting in solutions such as foreach, or for...

Any takers?

Hint: No, both List<T>.ToArray() and List<T>.ToArray<object>() don't work.

Edit: Why List<T>.ToArray<object>() doesn't work? Because it can't compile.

flag

49% accept rate
Why don't List<T>.ToArray() and List<T>.ToArray<object>() work? – Jared Bienz - MSFT Apr 23 at 14:50
1  
Please don't post something like "X doesn't work", instead, give us the results and why you think that is not valid for your purposes. We don't know whether your code is causing an exception, or producing results you don't want, etc. – JoshJordan Apr 23 at 14:52
@Jared: Because ToArray<object> won't compile -- the type must match the underlying type of the list. – Randolpho Apr 23 at 14:53
3  
@JoshJordan: There's nothing wrong with the question. He's ignorant of some of the new extension methods in 3.5, that's all. He's tried two and failed. – Randolpho Apr 23 at 14:55
I don't understand the aversion to using a loop. Chances are that any one-line solution is just executing a loop internally anyway. In fact, if the extension methods didn't exist, you could write your own... using a loop. – Michael Meadows Apr 23 at 14:58
show 2 more comments

7 Answers

vote up 15 vote down check
mylist.Cast<object>().ToArray()

That will only iterate once, by the way, in case you were wondering about the performance. O(n). :)

Why? Well, because Cast<object> will use deferred execution and won't actually do anything until the list is iterated by ToArray().

Edit: Alternatively, you could use LINQ to do the same thing in one line with one iteration:

var myObjectArray = (from item in myList select item as object).ToArray();

The first is probably easier to understand and type, but the second is much more fun, because, hey, it's LINQ!

link|flag
1  
Didn't see the generic argument on the cast, so I posted another answer. This is the right answer. +1 – Stefan Steinegger Apr 23 at 14:55
1  
Both are LINQ. Second one is a LINQ query. – Samuel Apr 23 at 15:03
@Samuel: very true. :) – Randolpho Apr 23 at 15:05
vote up 4 vote down
List<T>.Select(x => x as object).ToArray();

Should return an object[].

link|flag
ooh, that gives me an idea... – Randolpho Apr 23 at 15:00
vote up 2 vote down
theList.Cast<object>().ToArray()

or

new List<object>(theList).ToArray()
link|flag
1  
Your first is preferrable. Your second option will iterate over the list twice. Cast<object> will not actually iterate over the list. – Randolpho Apr 23 at 14:57
@Randolpho, correct me if I'm wrong, but ToArray has to traverse the list in order to create an array. The casting is deferred until this occurs, but since it happens on the same line, it's effectviely iterating the entire list. Option 2, however does look like it would iterate twice. – Michael Meadows Apr 23 at 15:02
@Michael: That's what he said. The second would iterate twice. – Samuel Apr 23 at 15:04
@Stefan: The second will iterate twice because the List constructor will iterate over the original list to build its internal array. Then the ToArray() call will iterate over it to transform it to an array. You may be thinking that ToArray will return the List's internal array, but this is not the case. See msdn.microsoft.com/en-us/library/… for details – Randolpho Apr 23 at 15:08
@Samuel, I was agreeing with the assessment that option two iterates twice, but questioning the assertion that Cast<object> will not iterate. While that statement in isolation is true, it might lead people to believe that there's no iteration. I don't think that's what @Randolpho was trying to say, but it just appears to say it. I was just looking for clarification. – Michael Meadows Apr 23 at 15:43
show 4 more comments
vote up 2 vote down
And for a pre-LINQ solution (that only works for reference types).
(object[])List<T>.ToArray();
link|flag
You don't need the cast, reference types are all objects anyway. – Stevo3000 Apr 23 at 15:12
@Stevo3000 he certainly does need the cast, since that's a requirement of the original question. Casting to an array of objects. – Randolpho Apr 23 at 18:24
@Randolpho - Not true, all reference types are objects. Just because the question asks for a cast does not mean it is required. Any reference type can be stored as an object. – Stevo3000 Apr 24 at 7:52
vote up 1 vote down

If you don't mind writing a very short, reusable function, the ConvertAll Extension Method might help:

http://msdn.microsoft.com/en-us/library/73fe8cwf.aspx

EDIT:

This would work too

List<int> intList = new List<int>() { 1, 3, 4 };
object[] objectList = intList.ConvertAll(item => (object)item).ToArray();
link|flag
Why? If all he needs is object[], then .Cast<object>() is perfect. – Samuel Apr 23 at 14:56
vote up 1 vote down

If you don't have Linq (.Net 3.0) then you can use the ConvertAll() and ToArray() methods in List:

List<T> list = new List<T>();

object[] objects = list.ConvertAll<object>(item => (object)item).ToArray();
link|flag
vote up -2 vote down

In C# on .NET 2.0 (VS 2008) the following compiles and doesn't use LINQ (as far as I can see) for reference types.

 object[] oArray;
 List<MyObject> oList = new List<MyObject>();
 oArray = oList.ToArray();

This does not require a cast as all reference types have object as their base.

link|flag
It does not compile on my machine: VS 2008, .net 3.5 – Ngu Soon Hui Apr 23 at 15:17
@Ngu Soon Hui - Did you make sure that you were using a reference type? It compiles perfectly on my VS 2008 machine as .NET 3.5. – Stevo3000 Apr 24 at 7:58

Your Answer

Get an OpenID
or

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