I have this:
List s = new List{\"\", \"a\", \"\", \"b\", \"\", \"c\"};
I want to remove all the empty elements
s = s.Where(val => !string.IsNullOrEmpty(val)).ToList();