Is there a one-line easy linq expression to just get everything from a simple array except the first element?
for (int i = 1; i <= contents.Length - 1; i+
The following would be equivalent to your for loop:
for
foreach (var item in contents.Skip(1)) Message += item;
Yes, Enumerable.Skip does what you want:
contents.Skip(1)
However, the result is an IEnumerable<T>, if you want to get an array use:
contents.Skip(1).ToArray()