I have a collection uni-dimensional like this:
[1,2,4,5.....n]
I would like to convert that collection in a bi-dimensional collection like
You want Take() and Skip(). These methods will let you split an IEnumerable. Then you can use Concat() to slap them together again.
Take()
Skip()
IEnumerable
Concat()