Exemple #1
0
 public static T Find <T>(this XmlKey key, Predicate <T> match)
 {
     return(XmlFactory.Find(key.ToString()).Find(match));
 }
Exemple #2
0
 public static List <T> FindAll <T>(this XmlKey key)
 {
     return(XmlFactory.Find(key.ToString()).FindAll <T>());
 }