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
Microsoft's Reactive Extensions' Team has the Interactive Extensions (NuGet "System.Interactive") that lets you do this:
var remStrings = queries.SkipLast(1);