c# exclude first element of array code example
Example 1: c# array remove first element
string[] arr = { "a", "b", "a" };
arr = arr.Skip(1).ToArray();
Example 2: c# skip only first element in array
contents.Skip(1)
string[] arr = { "a", "b", "a" };
arr = arr.Skip(1).ToArray();
contents.Skip(1)