public static class StringExtensions { public static bool IsNullOrWhitespace(this string s) { if (null == s) return true; return string.IsNullOrEmpty(s.Trim()); } }
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)