If you are using .NET 3.5, the easiest way is to use Skip (1) and then convert back to an array.
myFunc(myArray.Skip(1).ToArray());
If performance is a problem, you will either need to create a new array manually, or change your function to accept an index parameter.
source
share