| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Y.Utils.Net20.StringUtils
- {
- public class StringTool
- {
- public static bool IsNullOrWhiteSpace(string str)
- {
- if (str == null)
- return true;
- if (str.Trim().Length == 0)
- return true;
- return false;
- }
- }
- }
|