Esempio n. 1
0
        public object GetValue(object target, object[] indexes)
        {
            if (indexes != null)
            {
                throw new NotSupportedException();
            }

            if (_accessor == null)
            {
                Init();
            }

            return(_accessor.Get(target));
        }