示例#1
0
        public override bool TryResolve(string name, out object value)
        {
            FastProperty prop = _reflection.GetGetter(name);

            if (null != prop)
            {
                value = prop.GetValue(_params);
                return(true);
            }
            else
            {
                value = null;
                return(false);
            }
        }