I have a code:
List<int> list = new List<int>();
for (int i = 1; i <= n; i++)
list.Add(i);
Can I create this List<int> in one line with Linq?
|
1
|
|
|
|
|
|
|
||
|
|
|
|
||
|
|
|
|
If you need a lot of those lists, you might find the following extension method useful:
Use it like this:
Of course, for the general case, the Enumerable.Range thing the others posted may be more what you want, but I thought I'd share this ;) You can use this next time your Ruby-loving co-worker says how verbose C# is with that Enumerable.Range. |
||||||||
|