1: private static bool IsReallyNullOrEmpty(string text)
2: {
3: return String.IsNullOrEmpty(text) || text.Trim().Length == 0;
4: }