Example #1
0
 public void RemoveFrame(int index)
 {
     if (frames.Count < index + 1)
     {
         throw new ArgumentOutOfRangeException();
     }
     frames.RemoveAt(index);
 }
Example #2
0
 public void RemoveAt(int index)
 {
     pila.RemoveAt(index);
 }