AdEvade.Config.Properties.KeysExist C# (CSharp) Method

KeysExist() public static method

public static KeysExist ( ) : bool
return bool
        public static bool KeysExist(params ConfigValue[] values)
        {
            if (Values == null) return false;
            return values.All(configValue => Values.ContainsKey(configValue));
        }