ArrayList集合的简单使用

来源:互联网 发布:矩阵分配律 编辑:程序博客网 时间:2024/05/01 11:57
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;


namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            ArrayList std = new ArrayList();


            string s1 = "abc";
            std.Add(s1);
            string s2 = "def";
            std.Add(s2);
            string s3 = "ghi";
            std.Add(s3);
            string s4 = "jkl";
            std.Add(s4);
            string s5 = "mno";
            std.Add(s5);
            foreach (string item in std)
            {
                Console.WriteLine(item);
            }


            //删除指定下标的项
            std.RemoveAt(2);
            Console.WriteLine("***************RemoveAt*************");
            foreach (string item in std)
            {
                Console.WriteLine(item);
            }
            //删除指定标记的项
            Console.WriteLine("***************Remove*************");
            std.Remove(s4);
            foreach (var item in std)
            {
                Console.WriteLine((string)item);
            }
            //删除一定范围的项
            //参数是第一个参数是删除的开始下标,第二个参数是,删除的长度
            Console.WriteLine("***************RemoveRange*************");
            std.RemoveRange(1,2);
            foreach (var item in std)
            {
                Console.WriteLine((string)item);
            }


            Console.ReadKey();
        }
    }

}


注意事项待续。。。。。。。

0 0
原创粉丝点击