StringUtil.cs 319 B

12345678910111213141516
  1. namespace GeekDesk.Util
  2. {
  3. public class StringUtil
  4. {
  5. public static bool IsEmpty(object str)
  6. {
  7. if (str == null || str.ToString().Length == 0 || str.ToString().Trim().Length == 0)
  8. {
  9. return true;
  10. }
  11. return false;
  12. }
  13. }
  14. }