C#中添加对象到ArrayList的代码
2021-06-21 19:06
标签:方法 nbsp The tran 比较 pos har ddr 索引 把开发过程中比较好的一些代码段做个备份,下面代码是关于C#中添加对象到ArrayList的代码。 ArrayList alcollect = new ArrayList(); AddRange方法支持添加一个范围内的对象。 ArrayList alcollect = new ArrayList(); Add和AddRange将对象添加到ArrayList的末尾。Insert和InsertRange方法添加对象到指定的索引位置。 ArrayList alcollect = new ArrayList(); 我们可以通过索引号找到指定的对象 ArrayList alcollect = new ArrayList(); C#中添加对象到ArrayList的代码 标签:方法 nbsp The tran 比较 pos har ddr 索引 原文地址:https://www.cnblogs.com/SHUN019/p/10225544.html
string str = "learn csharp";
alcollect.Add(str);
alcollect.Add("hello world");
alcollect.Add(500);
alcollect.Add(new object());
string[] someArray = new string[] { "ek", "do", "theen" };
alcollect.AddRange(someArray);
alcollect.Insert(3, "adding this at 3rd posn");
string[] someStrings = new string[] { "hello", "world" };
alcollect.InsertRange(4, someStrings);
alcollect[3] = "iam at three";
上一篇:C#中CefSharp的简单使用
下一篇:第一个Web API应用
文章标题:C#中添加对象到ArrayList的代码
文章链接:http://soscw.com/index.php/essay/97036.html