I have a string array like this.
string[] queries with data more than one string.
string[] queries
I want to skip the last string from the element and take the r
var remStrings = queries.Take(queries.Length - 1);
No need to Reverse and Skip. Just take one less element than there are in the array.
If you really wanted the elements in the reverse order, you could tack on a .Reverse() to the end.
.Reverse()