StringTool.cs 377 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Y.Utils.StringUtils
  5. {
  6. public class StringTool
  7. {
  8. public static bool IsNullOrWhiteSpace(string str)
  9. {
  10. if (str == null)
  11. return true;
  12. if (str.Trim().Length == 0)
  13. return true;
  14. return false;
  15. }
  16. }
  17. }