Aqueduct.Helpers.StringExtensions.IsNullOrEmpty C# (CSharp) 메소드

IsNullOrEmpty() 개인적인 메소드

private IsNullOrEmpty ( this str ) : bool
str this
리턴 bool
        public static bool IsNullOrEmpty (this string str)
        {
            return string.IsNullOrEmpty (str);
        }