private bool TryResolvePair(string argument, out TypeReferencePair pair) {
            pair = null;

            if (_dictionary.TryGetValue(argument, out pair)) {
                return true;
            }

            return false;
        }
Beispiel #2
0
        private bool TryResolvePair(string argument, out TypeReferencePair pair)
        {
            pair = null;

            if (_dictionary.TryGetValue(argument, out pair))
            {
                return(true);
            }

            return(false);
        }