Exemplo n.º 1
0
        internal override bool ContainsRawObject(out string path)
        {
            string keyPath;

            if (KeyType.ContainsRawObject(out keyPath))
            {
                path = ".<TKey>" + keyPath;
                return(true);
            }

            string valuePath;

            if (ValueType.ContainsRawObject(out valuePath))
            {
                path = ".<TValue>" + valuePath;
                return(true);
            }

            path = null;
            return(false);
        }