How, using C#, can I create a new string[] from another string[] containing a subsection of the old string[] array?
For example, if I had:
string[] a = { "cat", "dog", "hamster", "parrot" }
And I wanted to get everything after the first element I should get:
string[] b = { "dog", "hamster", "parrot" }
How, if this is even possible without a for loop, do I achieve this?