예제 #1
0
 public static void RemoveLastN(this IBaseCollection collection, int numberOfItems)
 {
     for (int i = 0; i < numberOfItems; i++)
     {
         collection.RemoveLast("something");
     }
 }