how to remeove the first element from an array c# code example
Example: c# array remove first element
string[] arr = { "a", "b", "a" };
arr = arr.Skip(1).ToArray();
string[] arr = { "a", "b", "a" };
arr = arr.Skip(1).ToArray();