using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ET { public static class StringUtil { public static bool IsNullOrEmpty(this string obj) { if (obj == null || string.IsNullOrEmpty(obj) || string.IsNullOrWhiteSpace(obj)) return true; return false; } } }