예제 #1
0
파일: ProxyList.cs 프로젝트: dadebert/Semi
        public TSource this[int index] {
            get {
                return(Convert.Invoke(Target[index]));
            }

            set {
                Target[index] = Revert.Invoke(value);
            }
        }