BplusDotNet.BplusTreeBytes.Get C# (CSharp) Method

Get() public method

public Get ( string key, object defaultValue ) : object
key string
defaultValue object
return object
        public object Get(string key, object defaultValue)
        {
            long map;
            if (this.tree.ContainsKey(key, out map))
            {
                return (object) this.archive.GetChunk(map);
            }
            return defaultValue;
        }