BplusDotNet.xBplusTreeBytes.ContainsKey C# (CSharp) 메소드

ContainsKey() 공개 메소드

public ContainsKey ( string key ) : bool
key string
리턴 bool
        public bool ContainsKey(string key)
        {
            xBucket bucket;
            string prefix;
            bool found = FindBucketForPrefix(key, out bucket, out prefix, false);
            if (!found)
            {
                return false;
            }
            byte[] map;
            return bucket.Find(key, out map);
        }