Is the input string null or empty
//The MIT License (MIT) //http://arolibraries.codeplex.com/license using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; namespace AroLibraries.ExtensionMethods.Strings { public static class StringExt { public static bool Ext_IsNullOrEmpty(this string str) { return String.IsNullOrEmpty(str); } } }
String