How to easily check if a string is blank or full of an undetermined amount of spaces, or not?
Try use LinQ to solve?
if(from c in yourString where c != ' ' select c).Count() != 0)
This will return true if the string is not all spaces.