Apache.Shiro.Util.StringUtils.HasLength C# (CSharp) Method

HasLength() public static method

public static HasLength ( string value ) : bool
value string
return bool
        public static bool HasLength(string value)
        {
            return !string.IsNullOrEmpty(value);
        }