GameFramework.KeyString.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

public static IsNullOrEmpty ( KeyString str ) : bool
str KeyString
return bool
        public static bool IsNullOrEmpty(KeyString str)
        {
            return str == null || str.m_Keys.Count == 0;
        }