Пример #1
0
        public void Indexer_Get()
        {
            var f = new FredPropertyClass();

            Assert.AreEqual(2, ReflectionHelper.GetIndexer(f, 1));
            Assert.AreEqual(16, ReflectionHelper.GetIndexer(f, 8));
        }
 public void Indexer_Get()
 {
     var f = new FredPropertyClass();
     Assert.AreEqual(2, ReflectionHelper.GetIndexer(f, 1));
     Assert.AreEqual(16, ReflectionHelper.GetIndexer(f, 8));
 }