コード例 #1
0
ファイル: MyListUtil.cs プロジェクト: Cardman/tutorials
        public static MyList <E> getReverse <E>(this IEnumerable <E> _it)
        {
            MyList <E> list_ = new MyList <E>(_it);

            return(list_.getReverse());
        }