Babel.Core.STR.is_empty C# (CSharp) Method

is_empty() public static method

public static is_empty ( string self ) : bool
self string
return bool
        public static bool is_empty(string self)
        {
            return self.Length == 0;
        }