BplusDotNet.xBucket.Find C# (CSharp) Method

Find() public method

public Find ( string key, byte &map ) : bool
key string
map byte
return bool
        public bool Find(string key, out byte[] map)
        {
            map = null;
            int index = 0;
            while (index<this.keys.Count)
            {
                string thiskey = (string) this.keys[index];
                if (this.owner.Compare(thiskey, key)==0)
                {
                    map = (byte[]) this.values[index];
                    return true;
                }
                index++;
            }
            return false;
        }