Aspectacular.Core50Shims.IsNullOrEmpty C# (CSharp) Méthode

IsNullOrEmpty() public static méthode

public static IsNullOrEmpty ( this str ) : bool
str this
Résultat bool
        public static bool IsNullOrEmpty(this string str)
        {
            // ReSharper disable once ReplaceWithStringIsNullOrEmpty
            return str == null || str.Length == 0;
        }
Core50Shims