C# 클래스 UnityContrib.UnityEngine.IEnumeratorEx

Provides helper methods for working with the T:System.Collections.IEnumerator class.
파일 보기 프로젝트 열기: UnityContrib/framework

공개 메소드들

메소드 설명
Recursive ( this enumerator, int maxRecursion = 7, int currentRecursion ) : IEnumerator

Enumerates the specified enumerator recursively. If the enumerator returns another T:System.Collections.IEnumerator that will also be enumerated an so forward.

메소드 상세

Recursive() 공개 정적인 메소드

Enumerates the specified enumerator recursively. If the enumerator returns another T:System.Collections.IEnumerator that will also be enumerated an so forward.
public static Recursive ( this enumerator, int maxRecursion = 7, int currentRecursion ) : IEnumerator
enumerator this /// The to enumerate. ///
maxRecursion int /// The maximum number of recursion levels before aborting. ///
currentRecursion int /// The current number of recursion levels. ///
리턴 IEnumerator