How can i delete the first index(0) of a string[] array?
Can't find array.RemoveAt(0);

1 Answer
Arrays in .NET have a fixed length, so you can't simply add or remove elements at a given location. You'd need to create a new array. The easiest way would probably be to use a little Linq:
urlexploded = urlexploded.Skip(1).ToArray();
But you may not need an array. If you refactor your code so that urlexploded is a List<T>, you can use RemoveAt as expected, or if you can make it an IEnumerable<T> just drop the ToArray at the end.