seprate a string array to several small arrays
- by blgnklc
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..