c# yield return
![[C#] 코루틴 (COROUTINE) (2)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FwaQN3%2FbtqDSjoLAWW%2FfootUbAIdxGmPLfVYaqgB1%2Fimg.png)
[C#] 코루틴 (COROUTINE) (2)
1. 핵심 정리 using System; using System.Collections; using System.Collections.Generic; class Node { public int data; public Node next; public Node(int d, Node n) { data = d; next = n; } } // 열거자 class IntLinkedListEnumerator : IEnumerator { public Node head = null; public Node current = null; public IntLinkedListEnumerator(Node n) { head = n; } public object Current => current.data; public bool Move..