Is this possible, or am I just trying to way overly shorten my code?
I thought it might be something like:
IQueryable<string> trimmedStrs = untrimmedStrsArr.AsQueryable<string>().All(s => s.Trim());
But that's no good :(
Is this possible, or am I just trying to way overly shorten my code?
I thought it might be something like:
IQueryable<string> trimmedStrs = untrimmedStrsArr.AsQueryable<string>().All(s => s.Trim());
But that's no good :(