예제 #1
0
 public int RemoveAll(Predicate <T> match)
 {
     return(ListExt.RemoveAll(this, match));
 }
예제 #2
0
파일: DList.cs 프로젝트: jonathanvdc/Loyc
 public int RemoveAll(Predicate <T> condition)
 {
     return(ListExt.RemoveAll(this, condition));
 }