Beispiel #1
0
        public Type GetObjectType()
        {
            IndexerProxy indexer = new IndexerProxy(TargetObject);

            return(indexer[IndexerArgs] != null ? indexer[IndexerArgs].GetType() : typeof(object));
        }
Beispiel #2
0
        public object GetObject()
        {
            IndexerProxy indexer = new IndexerProxy(TargetObject);

            return(indexer[IndexerArgs]);
        }