Aspectacular.Core50Shims.IsNullOrEmpty C# (CSharp) 메소드

IsNullOrEmpty() 공개 정적인 메소드

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