seprate a string array to several small arrays

Posted by blgnklc on Stack Overflow See other posts from Stack Overflow or by blgnklc
Published on 2010-06-18T06:11:35Z Indexed on 2010/06/18 6:13 UTC
Read the original article Hit count: 160

Filed under:

how can I separate an array in smaller arrays?

string[] str = new string[145]

I want two arrays for this; like

string[] str1 = new string[99];
string[] str2 = new string[46];

how can I do this from the source of str?

1- Then I want to put togetger the arrays into List all together but there is only add item? no add items? or any other way to make the string[145] array again..

© Stack Overflow or respective owner

Related posts about c#