StringExtension.cs 402 B

123456789101112
  1. namespace BulePointLilac.Methods
  2. {
  3. //为兼容.Net Framework 3.5,无法引用Microsoft.CSharp.dll(中的string.IsNullOrWhiteSpace)写了这个扩展方法
  4. public static class StringExtension
  5. {
  6. public static bool IsNullOrWhiteSpace(this string str)
  7. {
  8. if(string.IsNullOrEmpty(str)) return true;
  9. return str.Trim().Length == 0;
  10. }
  11. }
  12. }