예제 #1
0
파일: Yaml.cs 프로젝트: IngisKahn/Nyaml
 internal static IEnumerable<Nodes.Base> ComposeAll(ILoader loader, bool dispose)
 {
     while (loader.CheckNode())
         yield return loader.GetNode();
     if (dispose)
         loader.Dispose();
 }