示例#1
0
 void RemoveAt(int at)
 {
     AddToBoth();
     fake.RemoveAt(at);
     deq.RemoveAt(at);
     CompareAndAssert();
 }
示例#2
0
        public void RemoveAt_Null()
        {
            for (int i = 0; i < ImplicitInt; i++)
            {
                deq.Add(5);
            }
            deq.Insert(8, null);

            deq.RemoveAt(8);
        }