본문 바로가기
프로그래밍/C#

List 루프 돌며 삭제

by neive 2020. 11. 11.
728x90
            for (int i = 0; i < List.Count;)
            {
                if (List[i] == 조건)
                {
                    List.RemoveAt(i);
                    continue;
                }
                else
                    i++;
            }
728x90

댓글