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.