• 2022-06-08
    假设有如下定义:下列哪个选项可以实现删除集合里的“3”( )int[] array = new int[] { 1,2,3,4,5};ArrayList list = new ArrayList(array);
    A: list.Clear( )
    B: list.RemoveAt(3)
    C: list.Remove(3)
    D: list.RemoveRange(0,2)