コード例 #1
0
ファイル: Iterator.cs プロジェクト: mariocervera/Chess
        public bool MoveNext()
        {
            index++;

            return(index < list.count());
        }