Example #1
0
 public T FindLastChild <T>(ILNodeType type, bool throwIfMissing = false)
     where T : ILNode
 {
     return((T)FindLastChild(n => n.NodeType == type, throwIfMissing));
 }
 public T FindPreviousSibling <T>(ILNodeType type, bool throwIfMissing = false)
     where T : ILNode
 {
     return((T)FindPreviousSibling(n => n.NodeType == type, throwIfMissing));
 }