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;