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