コード例 #1
0
ファイル: GoNode.cs プロジェクト: momoewang/igoenchi
 public bool Exists(Predicate <GoNode> p)
 {
     if (p(this))
     {
         return(true);
     }
     return(ChildNodes.Exists(c => Exists(p)));
 }