Example #1
0
 void System.Collections.IList.RemoveAt(int index)
 {
     if (index >= 0 && index < m_InternalList.Count)
     {
         m_InternalList.RemoveAt(index);
     }
 }