BplusDotNet.SerializedTree.Get C# (CSharp) 메소드

Get() 공개 메소드

public Get ( string key, object defaultValue ) : object
key string
defaultValue object
리턴 object
        public object Get(string key, object defaultValue)
        {
            if (this.tree.ContainsKey(key))
            {
                return this[key];
            }
            return defaultValue;
        }