I create an array of strings with
string[] parts = string.spilt(" ");
And to get an array with X parts in it, I would like to get a copy of the array of strings starting from the element
parts[x-2]
Besides the obvious brute force approach (create a new array and insert lines), is there a more elegant way to do this in C #?
arrays c #
Kevin
source share