001_集合Collection

作者: HMY轩园 | 来源:发表于2017-04-26 12:02 被阅读2次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApp
{
    //集合
    class Collection:CollectionBase
    {
        public void Add(Object item ) {
            this.InnerList.Add(item);
        }
        public void Remove(Object item) {
            this.InnerList.Remove(item);
        }
        public void Clear() {
            this.InnerList.Clear();
        }
        public int Count() {
            return InnerList.Count;
        }
    }
}

调用集合:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp
{
    class example_01
    {
        static void Main()
        {
            Collection names = new Collection();
            names.Add("张三");
            names.Add("李四");
            names.Add("王五");
            names.Add("张武");

            foreach (Object name in names)
            {
                Console.WriteLine(name);
            }

            Console.WriteLine(names.Count());

            names.Remove("王五");
            Console.WriteLine("--------------------");
            foreach (Object name in names)
            {
                Console.WriteLine(name);
            }

            Console.WriteLine(names.Count());
            names.Clear();
            Console.WriteLine("--------------------");
            Console.WriteLine(names.Count());

            Console.Read();
        }
    }
}

运行结果:
张三
李四
王五
张武
4


张三
李四
张武
3


0

#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.2\mscorlib.dll
#endregion

using System.Runtime.InteropServices;

namespace System.Collections
{
    //
    // 摘要:
    //     为强类型集合提供 abstract 基类。
    [ComVisible(true)]
    public abstract class CollectionBase : IList, ICollection, IEnumerable
    {
        //
        // 摘要:
        //     使用默认初始容量初始化 System.Collections.CollectionBase 类的新实例。
        protected CollectionBase();
        //
        // 摘要:
        //     使用指定的容量初始化 System.Collections.CollectionBase 类的新实例。
        //
        // 参数:
        //   capacity:
        //     新列表最初可以存储的元素数。
        protected CollectionBase(int capacity);

        //
        // 摘要:
        //     获取或设置 System.Collections.CollectionBase 可包含的元素数。
        //
        // 返回结果:
        //     System.Collections.CollectionBase 可包含的元素数。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     System.Collections.CollectionBase.Capacity 设置为小于 System.Collections.CollectionBase.Count
        //     的值。
        //
        //   T:System.OutOfMemoryException:
        //     系统中没有足够的可用内存。
        [ComVisible(false)]
        public int Capacity { get; set; }
        //
        // 摘要:
        //     获取包含在 System.Collections.CollectionBase 实例中的元素数。不能重写此属性。
        //
        // 返回结果:
        //     包含在 System.Collections.CollectionBase 实例中的元素数。检索此属性的值的运算复杂度为 O(1)。
        public int Count { get; }
        //
        // 摘要:
        //     获取一个 System.Collections.ArrayList,它包含 System.Collections.CollectionBase 实例中元素的列表。
        //
        // 返回结果:
        //     表示 System.Collections.CollectionBase 实例本身的 System.Collections.ArrayList。检索此属性的值的运算复杂度为
        //     O(1)。
        protected ArrayList InnerList { get; }
        //
        // 摘要:
        //     获取一个 System.Collections.IList,它包含 System.Collections.CollectionBase 实例中元素的列表。
        //
        // 返回结果:
        //     表示 System.Collections.CollectionBase 实例本身的 System.Collections.IList。
        protected IList List { get; }

        //
        // 摘要:
        //     从 System.Collections.CollectionBase 实例移除所有对象。不能重写此方法。
        public void Clear();
        //
        // 摘要:
        //     返回循环访问 System.Collections.CollectionBase 实例的枚举器。
        //
        // 返回结果:
        //     用于 System.Collections.CollectionBase 实例的 System.Collections.IEnumerator。
        public IEnumerator GetEnumerator();
        //
        // 摘要:
        //     移除 System.Collections.CollectionBase 实例的指定索引处的元素。此方法不可重写。
        //
        // 参数:
        //   index:
        //     要移除的元素的从零开始的索引。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -index 等于或大于 System.Collections.CollectionBase.Count。
        public void RemoveAt(int index);
        //
        // 摘要:
        //     当清除 System.Collections.CollectionBase 实例的内容时执行其他自定义进程。
        protected virtual void OnClear();
        //
        // 摘要:
        //     在清除 System.Collections.CollectionBase 实例的内容之后执行其他自定义进程。
        protected virtual void OnClearComplete();
        //
        // 摘要:
        //     在向 System.Collections.CollectionBase 实例中插入新元素之前执行其他自定义进程。
        //
        // 参数:
        //   index:
        //     从零开始的索引,在该处插入 value。
        //
        //   value:
        //     index 处的元素的新值。
        protected virtual void OnInsert(int index, object value);
        //
        // 摘要:
        //     在向 System.Collections.CollectionBase 实例中插入新元素之后执行其他自定义进程。
        //
        // 参数:
        //   index:
        //     从零开始的索引,在该处插入 value。
        //
        //   value:
        //     index 处的元素的新值。
        protected virtual void OnInsertComplete(int index, object value);
        //
        // 摘要:
        //     当从 System.Collections.CollectionBase 实例移除元素时执行其他自定义进程。
        //
        // 参数:
        //   index:
        //     从零开始的索引,可在该位置找到 value。
        //
        //   value:
        //     要从 index 移除的元素的值。
        protected virtual void OnRemove(int index, object value);
        //
        // 摘要:
        //     在从 System.Collections.CollectionBase 实例中移除元素之后执行其他自定义进程。
        //
        // 参数:
        //   index:
        //     从零开始的索引,可在该位置找到 value。
        //
        //   value:
        //     要从 index 移除的元素的值。
        protected virtual void OnRemoveComplete(int index, object value);
        //
        // 摘要:
        //     当在 System.Collections.CollectionBase 实例中设置值之前执行其他自定义进程。
        //
        // 参数:
        //   index:
        //     从零开始的索引,可在该位置找到 oldValue。
        //
        //   oldValue:
        //     要用 newValue 替换的值。
        //
        //   newValue:
        //     index 处的元素的新值。
        protected virtual void OnSet(int index, object oldValue, object newValue);
        //
        // 摘要:
        //     当在 System.Collections.CollectionBase 实例中设置值后执行其他自定义进程。
        //
        // 参数:
        //   index:
        //     从零开始的索引,可在该位置找到 oldValue。
        //
        //   oldValue:
        //     要用 newValue 替换的值。
        //
        //   newValue:
        //     index 处的元素的新值。
        protected virtual void OnSetComplete(int index, object oldValue, object newValue);
        //
        // 摘要:
        //     当验证值时执行其他自定义进程。
        //
        // 参数:
        //   value:
        //     要验证的对象。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     value 为 null。
        protected virtual void OnValidate(object value);
    }
}
#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5.2\mscorlib.dll
#endregion

using System.Diagnostics;
using System.Reflection;
using System.Runtime;
using System.Runtime.InteropServices;
using System.Security;

namespace System.Collections
{
    //
    // 摘要:
    //     使用大小会根据需要动态增加的数组来实现 System.Collections.IList 接口。
    [ComVisible(true)]
    [DebuggerDisplay("Count = {Count}")]
    [DebuggerTypeProxy(typeof(ArrayListDebugView))]
    [DefaultMember("Item")]
    public class ArrayList : IList, ICollection, IEnumerable, ICloneable
    {
        //
        // 摘要:
        //     初始化 System.Collections.ArrayList 类的新实例,该实例为空并且具有默认初始容量。
        [TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
        public ArrayList();
        //
        // 摘要:
        //     初始化 System.Collections.ArrayList 类的新实例,该实例为空并且具有指定的初始容量。
        //
        // 参数:
        //   capacity:
        //     新列表最初可以存储的元素数。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     capacity 小于零。
        public ArrayList(int capacity);
        //
        // 摘要:
        //     初始化 System.Collections.ArrayList 类的新实例,该实例包含从指定集合复制的元素并且具有与所复制的元素数相同的初始容量。
        //
        // 参数:
        //   c:
        //     System.Collections.ICollection,它的元素被复制到新列表中。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     c 为 null。
        public ArrayList(ICollection c);

        //
        // 摘要:
        //     获取或设置位于指定索引处的元素。
        //
        // 参数:
        //   index:
        //     要获得或设置的元素从零开始的索引。
        //
        // 返回结果:
        //     位于指定索引处的元素。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -index 等于或大于 System.Collections.ArrayList.Count。
        public virtual object this[int index] { get; set; }

        //
        // 摘要:
        //     获取或设置 System.Collections.ArrayList 可包含的元素数。
        //
        // 返回结果:
        //     System.Collections.ArrayList 可包含的元素数。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     System.Collections.ArrayList.Capacity 设置为小于 System.Collections.ArrayList.Count
        //     的值。
        //
        //   T:System.OutOfMemoryException:
        //     系统中没有足够的可用内存。
        public virtual int Capacity { get; set; }
        //
        // 摘要:
        //     获取 System.Collections.ArrayList 中实际包含的元素数。
        //
        // 返回结果:
        //     System.Collections.ArrayList 中实际包含的元素数。
        public virtual int Count { get; }
        //
        // 摘要:
        //     获取一个值,该值指示 System.Collections.ArrayList 是否具有固定大小。
        //
        // 返回结果:
        //     如果 System.Collections.ArrayList 具有固定大小,则为 true;否则为 false。默认值为 false。
        public virtual bool IsFixedSize { get; }
        //
        // 摘要:
        //     获取一个值,该值指示 System.Collections.ArrayList 是否为只读。
        //
        // 返回结果:
        //     如果 System.Collections.ArrayList 为只读,则为 true;否则为 false。默认值为 false。
        public virtual bool IsReadOnly { get; }
        //
        // 摘要:
        //     获取一个值,该值指示是否同步对 System.Collections.ArrayList 的访问(线程安全)。
        //
        // 返回结果:
        //     如果对 System.Collections.ArrayList 的访问是同步的(线程安全),则为 true;否则为 false。默认值为 false。
        public virtual bool IsSynchronized { get; }
        //
        // 摘要:
        //     获取可用于同步对 System.Collections.ArrayList 的访问的对象。
        //
        // 返回结果:
        //     可用于同步对 System.Collections.ArrayList 的访问的对象。
        public virtual object SyncRoot { get; }

        //
        // 摘要:
        //     为特定的 System.Collections.IList 创建 System.Collections.ArrayList 包装。
        //
        // 参数:
        //   list:
        //     要包装的 System.Collections.IList。
        //
        // 返回结果:
        //     System.Collections.IList 周围的 System.Collections.ArrayList 包装。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     list 为 null。
        public static ArrayList Adapter(IList list);
        //
        // 摘要:
        //     返回具有固定大小的 System.Collections.IList 包装。
        //
        // 参数:
        //   list:
        //     要包装的 System.Collections.IList。
        //
        // 返回结果:
        //     具有固定大小的 System.Collections.IList 包装。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     list 为 null。
        public static IList FixedSize(IList list);
        //
        // 摘要:
        //     返回具有固定大小的 System.Collections.ArrayList 包装。
        //
        // 参数:
        //   list:
        //     要包装的 System.Collections.ArrayList。
        //
        // 返回结果:
        //     具有固定大小的 System.Collections.ArrayList 包装。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     list 为 null。
        public static ArrayList FixedSize(ArrayList list);
        //
        // 摘要:
        //     返回只读的 System.Collections.IList 包装。
        //
        // 参数:
        //   list:
        //     要包装的 System.Collections.IList。
        //
        // 返回结果:
        //     list 周围的只读 System.Collections.IList 包装。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     list 为 null。
        public static IList ReadOnly(IList list);
        //
        // 摘要:
        //     返回只读的 System.Collections.ArrayList 包装。
        //
        // 参数:
        //   list:
        //     要包装的 System.Collections.ArrayList。
        //
        // 返回结果:
        //     list 周围的只读 System.Collections.ArrayList 包装。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     list 为 null。
        public static ArrayList ReadOnly(ArrayList list);
        //
        // 摘要:
        //     返回 System.Collections.ArrayList,它的元素是指定值的副本。
        //
        // 参数:
        //   value:
        //     要在新 System.Collections.ArrayList 中对其进行多次复制的 System.Object。该值可以为 null。
        //
        //   count:
        //     value 应被复制的次数。
        //
        // 返回结果:
        //     具有 count 所指定的元素数的 System.Collections.ArrayList,其中的所有元素都是 value 的副本。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     count 小于零。
        public static ArrayList Repeat(object value, int count);
        //
        // 摘要:
        //     返回同步的(线程安全)System.Collections.ArrayList 包装。
        //
        // 参数:
        //   list:
        //     要同步的 System.Collections.ArrayList。
        //
        // 返回结果:
        //     同步的(线程安全)System.Collections.ArrayList 包装。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     list 为 null。
        public static ArrayList Synchronized(ArrayList list);
        //
        // 摘要:
        //     返回同步的(线程安全)System.Collections.IList 包装。
        //
        // 参数:
        //   list:
        //     要同步的 System.Collections.IList。
        //
        // 返回结果:
        //     同步的(线程安全)System.Collections.IList 包装。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     list 为 null。
        public static IList Synchronized(IList list);
        //
        // 摘要:
        //     将对象添加到 System.Collections.ArrayList 的结尾处。
        //
        // 参数:
        //   value:
        //     要添加到 System.Collections.ArrayList 的末尾处的 System.Object。该值可以为 null。
        //
        // 返回结果:
        //     System.Collections.ArrayList 索引,已在此处添加了 value。
        //
        // 异常:
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        public virtual int Add(object value);
        //
        // 摘要:
        //     将 System.Collections.ICollection 的元素添加到 System.Collections.ArrayList 的末尾。
        //
        // 参数:
        //   c:
        //     System.Collections.ICollection,其元素应被添加到 System.Collections.ArrayList 的末尾。集合本身不能为
        //     null,但它可以包含为 null 的元素。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     c 为 null。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        [TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
        public virtual void AddRange(ICollection c);
        //
        // 摘要:
        //     使用默认的比较器在整个已排序的 System.Collections.ArrayList 中搜索元素,并返回该元素从零开始的索引。
        //
        // 参数:
        //   value:
        //     要定位的 System.Object。该值可以为 null。
        //
        // 返回结果:
        //     如果找到 value,则为已排序的 System.Collections.ArrayList 中从零开始的 value 索引;否则为一个负数,它是大于 value
        //     的下一个元素索引的按位求补,如果没有更大的元素,则为 System.Collections.ArrayList.Count 的按位求补。
        //
        // 异常:
        //   T:System.ArgumentException:
        //     无论是 value 还是 System.Collections.ArrayList 的元素都不实现 System.IComparable 接口。
        //
        //   T:System.InvalidOperationException:
        //     value 与 System.Collections.ArrayList 的元素类型不同。
        public virtual int BinarySearch(object value);
        //
        // 摘要:
        //     使用指定的比较器在整个已排序的 System.Collections.ArrayList 中搜索元素,并返回该元素从零开始的索引。
        //
        // 参数:
        //   value:
        //     要定位的 System.Object。该值可以为 null。
        //
        //   comparer:
        //     比较元素时要使用的 System.Collections.IComparer 实现。- 或 -null 表示使用默认比较器,即每个元素的 System.IComparable
        //     实现。
        //
        // 返回结果:
        //     如果找到 value,则为已排序的 System.Collections.ArrayList 中从零开始的 value 索引;否则为一个负数,它是大于 value
        //     的下一个元素索引的按位求补,如果没有更大的元素,则为 System.Collections.ArrayList.Count 的按位求补。
        //
        // 异常:
        //   T:System.ArgumentException:
        //     comparer 为 null,而且 value 和 System.Collections.ArrayList 的元素都不实现 System.IComparable
        //     接口。
        //
        //   T:System.InvalidOperationException:
        //     comparer 为 null,而且 value 与 System.Collections.ArrayList 的元素不属于同一类型。
        public virtual int BinarySearch(object value, IComparer comparer);
        //
        // 摘要:
        //     使用指定的比较器在已排序 System.Collections.ArrayList 的某个元素范围中搜索元素,并返回该元素从零开始的索引。
        //
        // 参数:
        //   index:
        //     要搜索的范围从零开始的起始索引。
        //
        //   count:
        //     要搜索的范围的长度。
        //
        //   value:
        //     要定位的 System.Object。该值可以为 null。
        //
        //   comparer:
        //     比较元素时要使用的 System.Collections.IComparer 实现。- 或 -null 表示使用默认比较器,即每个元素的 System.IComparable
        //     实现。
        //
        // 返回结果:
        //     如果找到 value,则为已排序的 System.Collections.ArrayList 中从零开始的 value 索引;否则为一个负数,它是大于 value
        //     的下一个元素索引的按位求补,如果没有更大的元素,则为 System.Collections.ArrayList.Count 的按位求补。
        //
        // 异常:
        //   T:System.ArgumentException:
        //     index 和 count 不表示 System.Collections.ArrayList 中的有效范围。- 或 -comparer 为 null,而且
        //     value 和 System.Collections.ArrayList 的元素都不实现 System.IComparable 接口。
        //
        //   T:System.InvalidOperationException:
        //     comparer 为 null,而且 value 与 System.Collections.ArrayList 的元素不属于同一类型。
        //
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -count 小于零。
        public virtual int BinarySearch(int index, int count, object value, IComparer comparer);
        //
        // 摘要:
        //     从 System.Collections.ArrayList 中移除所有元素。
        //
        // 异常:
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        public virtual void Clear();
        //
        // 摘要:
        //     创建 System.Collections.ArrayList 的浅表副本。
        //
        // 返回结果:
        //     System.Collections.ArrayList 的浅表副本。
        public virtual object Clone();
        //
        // 摘要:
        //     确定某元素是否在 System.Collections.ArrayList 中。
        //
        // 参数:
        //   item:
        //     要在 System.Collections.ArrayList 中查找的 System.Object。该值可以为 null。
        //
        // 返回结果:
        //     如果在 System.Collections.ArrayList 中找到 item,则为 true;否则为 false。
        public virtual bool Contains(object item);
        //
        // 摘要:
        //     从目标数组的开头开始将整个 System.Collections.ArrayList 复制到兼容的一维 System.Array 中。
        //
        // 参数:
        //   array:
        //     作为从 System.Collections.ArrayList 复制的元素的目标的一维 System.Array。System.Array 必须具有从零开始的索引。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     array 为 null。
        //
        //   T:System.ArgumentException:
        //     array 是多维的。- 或 -源 System.Collections.ArrayList 中的元素数大于目标 array 可包含的元素数。
        //
        //   T:System.InvalidCastException:
        //     源 System.Collections.ArrayList 的类型无法自动转换为目标 array 的类型。
        public virtual void CopyTo(Array array);
        //
        // 摘要:
        //     从目标数组的指定索引处开始将整个 System.Collections.ArrayList 复制到兼容的一维 System.Array。
        //
        // 参数:
        //   array:
        //     作为从 System.Collections.ArrayList 复制的元素的目标的一维 System.Array。System.Array 必须具有从零开始的索引。
        //
        //   arrayIndex:
        //     array 中从零开始的索引,从此索引处开始进行复制。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     array 为 null。
        //
        //   T:System.ArgumentOutOfRangeException:
        //     arrayIndex 小于零。
        //
        //   T:System.ArgumentException:
        //     array 是多维的。- 或 -源 System.Collections.ArrayList 中的元素数目大于从 arrayIndex 到目标 array
        //     末尾之间的可用空间。
        //
        //   T:System.InvalidCastException:
        //     源 System.Collections.ArrayList 的类型无法自动转换为目标 array 的类型。
        public virtual void CopyTo(Array array, int arrayIndex);
        //
        // 摘要:
        //     从目标数组的指定索引处开始,将一定范围的元素从 System.Collections.ArrayList 复制到兼容的一维 System.Array 中。
        //
        // 参数:
        //   index:
        //     源 System.Collections.ArrayList 中复制开始位置的从零开始的索引。
        //
        //   array:
        //     作为从 System.Collections.ArrayList 复制的元素的目标的一维 System.Array。System.Array 必须具有从零开始的索引。
        //
        //   arrayIndex:
        //     array 中从零开始的索引,从此索引处开始进行复制。
        //
        //   count:
        //     要复制的元素数。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     array 为 null。
        //
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -arrayIndex 小于零。- 或 -count 小于零。
        //
        //   T:System.ArgumentException:
        //     array 是多维的。- 或 -index 等于或大于源 System.Collections.ArrayList 的 System.Collections.ArrayList.Count。-
        //     或 -从 index 到源 System.Collections.ArrayList 的末尾的元素数大于从 arrayIndex 到目标 array 的末尾的可用空间。
        //
        //   T:System.InvalidCastException:
        //     源 System.Collections.ArrayList 的类型无法自动转换为目标 array 的类型。
        public virtual void CopyTo(int index, Array array, int arrayIndex, int count);
        //
        // 摘要:
        //     返回整个 System.Collections.ArrayList 的一个枚举器。
        //
        // 返回结果:
        //     用于整个 System.Collections.ArrayList 的 System.Collections.IEnumerator。
        [TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
        public virtual IEnumerator GetEnumerator();
        //
        // 摘要:
        //     返回 System.Collections.ArrayList 中某个范围内的元素的枚举器。
        //
        // 参数:
        //   index:
        //     枚举器应引用的 System.Collections.ArrayList 部分从零开始的起始索引。
        //
        //   count:
        //     枚举器应引用的 System.Collections.ArrayList 部分中的元素数。
        //
        // 返回结果:
        //     System.Collections.ArrayList 中指定范围内的元素的 System.Collections.IEnumerator。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -count 小于零。
        //
        //   T:System.ArgumentException:
        //     index 和 count 未指定 System.Collections.ArrayList 中的有效范围。
        [TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
        public virtual IEnumerator GetEnumerator(int index, int count);
        //
        // 摘要:
        //     返回 System.Collections.ArrayList,它表示源 System.Collections.ArrayList 中元素的子集。
        //
        // 参数:
        //   index:
        //     范围开始处的从零开始的 System.Collections.ArrayList 索引。
        //
        //   count:
        //     范围中的元素数。
        //
        // 返回结果:
        //     System.Collections.ArrayList,它表示源 System.Collections.ArrayList 中元素的子集。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -count 小于零。
        //
        //   T:System.ArgumentException:
        //     index 和 count 不表示 System.Collections.ArrayList 中元素的有效范围。
        public virtual ArrayList GetRange(int index, int count);
        //
        // 摘要:
        //     搜索指定的 System.Object,并返回整个 System.Collections.ArrayList 中第一个匹配项的从零开始的索引。
        //
        // 参数:
        //   value:
        //     要在 System.Collections.ArrayList 中查找的 System.Object。该值可以为 null。
        //
        // 返回结果:
        //     如果在整个 System.Collections.ArrayList 中找到 value 的第一个匹配项,则为该项的从零开始的索引;否则为 -1。
        [TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
        public virtual int IndexOf(object value);
        //
        // 摘要:
        //     搜索指定的 System.Object,并返回 System.Collections.ArrayList 中从指定索引到最后一个元素的元素范围内第一个匹配项的从零开始的索引。
        //
        // 参数:
        //   value:
        //     要在 System.Collections.ArrayList 中查找的 System.Object。该值可以为 null。
        //
        //   startIndex:
        //     从零开始的搜索的起始索引。空列表中 0(零)为有效值。
        //
        // 返回结果:
        //     如果在 System.Collections.ArrayList 中从 startIndex 到最后一个元素的元素范围内找到 value 的第一个匹配项,则为该项的从零开始的索引;否则为
        //     -1。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     startIndex 不在 System.Collections.ArrayList 的有效索引范围内。
        public virtual int IndexOf(object value, int startIndex);
        //
        // 摘要:
        //     搜索指定的 System.Object,并返回 System.Collections.ArrayList 中从指定的索引开始并包含指定的元素数的元素范围内第一个匹配项的从零开始的索引。
        //
        // 参数:
        //   value:
        //     要在 System.Collections.ArrayList 中查找的 System.Object。该值可以为 null。
        //
        //   startIndex:
        //     从零开始的搜索的起始索引。空列表中 0(零)为有效值。
        //
        //   count:
        //     要搜索的部分中的元素数。
        //
        // 返回结果:
        //     如果在 System.Collections.ArrayList 中从 startIndex 开始并包含 count 个元素的元素范围内找到 value
        //     的第一个匹配项,则为该项的从零开始的索引;否则为 -1。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     startIndex 不在 System.Collections.ArrayList 的有效索引范围内。- 或 -count 小于零。- 或 -startIndex
        //     和 count 未指定 System.Collections.ArrayList 中的有效部分。
        public virtual int IndexOf(object value, int startIndex, int count);
        //
        // 摘要:
        //     将元素插入 System.Collections.ArrayList 的指定索引处。
        //
        // 参数:
        //   index:
        //     从零开始的索引,应在该位置插入 value。
        //
        //   value:
        //     要插入的 System.Object。该值可以为 null。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -index 大于 System.Collections.ArrayList.Count。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        public virtual void Insert(int index, object value);
        //
        // 摘要:
        //     将集合中的某个元素插入 System.Collections.ArrayList 的指定索引处。
        //
        // 参数:
        //   index:
        //     应在此处插入新元素的从零开始的索引。
        //
        //   c:
        //     System.Collections.ICollection,应将其元素插入到 System.Collections.ArrayList 中。集合本身不能为
        //     null,但它可以包含为 null 的元素。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     c 为 null。
        //
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -index 大于 System.Collections.ArrayList.Count。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        public virtual void InsertRange(int index, ICollection c);
        //
        // 摘要:
        //     搜索指定的 System.Object,并返回整个 System.Collections.ArrayList 中最后一个匹配项的从零开始的索引。
        //
        // 参数:
        //   value:
        //     要在 System.Collections.ArrayList 中查找的 System.Object。该值可以为 null。
        //
        // 返回结果:
        //     如果在整个 System.Collections.ArrayList 中找到 value 的最后一个匹配项,则为该项的从零开始的索引;否则为 -1。
        public virtual int LastIndexOf(object value);
        //
        // 摘要:
        //     搜索指定的 System.Object,并返回 System.Collections.ArrayList 中从第一个元素到指定索引的元素范围内最后一个匹配项的从零开始的索引。
        //
        // 参数:
        //   value:
        //     要在 System.Collections.ArrayList 中查找的 System.Object。该值可以为 null。
        //
        //   startIndex:
        //     向后搜索的从零开始的起始索引。
        //
        // 返回结果:
        //     如果在 System.Collections.ArrayList 中从第一个元素到 startIndex 的元素范围内找到 value 的最后一个匹配项,则为该项的从零开始的索引;否则为
        //     -1。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     startIndex 不在 System.Collections.ArrayList 的有效索引范围内。
        public virtual int LastIndexOf(object value, int startIndex);
        //
        // 摘要:
        //     搜索指定的 System.Object,并返回 System.Collections.ArrayList 中包含指定的元素数并在指定索引处结束的元素范围内最后一个匹配项的从零开始的索引。
        //
        // 参数:
        //   value:
        //     要在 System.Collections.ArrayList 中查找的 System.Object。该值可以为 null。
        //
        //   startIndex:
        //     向后搜索的从零开始的起始索引。
        //
        //   count:
        //     要搜索的部分中的元素数。
        //
        // 返回结果:
        //     如果在 System.Collections.ArrayList 中包含 count 个元素、在 startIndex 处结尾的元素范围内找到 value
        //     的最后一个匹配项,则为该项的从零开始的索引;否则为 -1。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     startIndex 不在 System.Collections.ArrayList 的有效索引范围内。- 或 -count 小于零。- 或 -startIndex
        //     和 count 未指定 System.Collections.ArrayList 中的有效部分。
        public virtual int LastIndexOf(object value, int startIndex, int count);
        //
        // 摘要:
        //     从 System.Collections.ArrayList 中移除特定对象的第一个匹配项。
        //
        // 参数:
        //   obj:
        //     要从 System.Collections.ArrayList 移除的 System.Object。该值可以为 null。
        //
        // 异常:
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        [TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
        public virtual void Remove(object obj);
        //
        // 摘要:
        //     移除 System.Collections.ArrayList 的指定索引处的元素。
        //
        // 参数:
        //   index:
        //     要移除的元素的从零开始的索引。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -index 等于或大于 System.Collections.ArrayList.Count。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        public virtual void RemoveAt(int index);
        //
        // 摘要:
        //     从 System.Collections.ArrayList 中移除一定范围的元素。
        //
        // 参数:
        //   index:
        //     要移除的元素的范围从零开始的起始索引。
        //
        //   count:
        //     要移除的元素数。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -count 小于零。
        //
        //   T:System.ArgumentException:
        //     index 和 count 不表示 System.Collections.ArrayList 中元素的有效范围。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        public virtual void RemoveRange(int index, int count);
        //
        // 摘要:
        //     将整个 System.Collections.ArrayList 中元素的顺序反转。
        //
        // 异常:
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。
        public virtual void Reverse();
        //
        // 摘要:
        //     将指定范围中元素的顺序反转。
        //
        // 参数:
        //   index:
        //     要反转的范围的从零开始的起始索引。
        //
        //   count:
        //     要反转的范围内的元素数。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -count 小于零。
        //
        //   T:System.ArgumentException:
        //     index 和 count 不表示 System.Collections.ArrayList 中元素的有效范围。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。
        public virtual void Reverse(int index, int count);
        //
        // 摘要:
        //     将集合中的元素复制到 System.Collections.ArrayList 中一定范围的元素上。
        //
        // 参数:
        //   index:
        //     从零开始的 System.Collections.ArrayList 索引,从该位置开始复制 c 的元素。
        //
        //   c:
        //     System.Collections.ICollection,要将其元素复制到 System.Collections.ArrayList 中。集合本身不能为
        //     null,但它可以包含为 null 的元素。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -index 加上 c 中的元素数大于 System.Collections.ArrayList.Count。
        //
        //   T:System.ArgumentNullException:
        //     c 为 null。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。
        public virtual void SetRange(int index, ICollection c);
        //
        // 摘要:
        //     对整个 System.Collections.ArrayList 中的元素进行排序。
        //
        // 异常:
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。
        public virtual void Sort();
        //
        // 摘要:
        //     使用指定的比较器对整个 System.Collections.ArrayList 中的元素进行排序。
        //
        // 参数:
        //   comparer:
        //     比较元素时要使用的 System.Collections.IComparer 实现。- 或 -null 引用(Visual Basic 中为 Nothing)将使用每个元数的
        //     System.IComparable 实现。
        //
        // 异常:
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。
        //
        //   T:System.InvalidOperationException:
        //     比较两个元素时出错。
        public virtual void Sort(IComparer comparer);
        //
        // 摘要:
        //     使用指定的比较器对 System.Collections.ArrayList 中某个范围内的元素进行排序。
        //
        // 参数:
        //   index:
        //     要排序的范围的从零开始的起始索引。
        //
        //   count:
        //     要排序的范围的长度。
        //
        //   comparer:
        //     比较元素时要使用的 System.Collections.IComparer 实现。- 或 -null 引用(Visual Basic 中为 Nothing)将使用每个元数的
        //     System.IComparable 实现。
        //
        // 异常:
        //   T:System.ArgumentOutOfRangeException:
        //     index 小于零。- 或 -count 小于零。
        //
        //   T:System.ArgumentException:
        //     index 和 count 未指定 System.Collections.ArrayList 中的有效范围。
        //
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。
        //
        //   T:System.InvalidOperationException:
        //     比较两个元素时出错。
        public virtual void Sort(int index, int count, IComparer comparer);
        //
        // 摘要:
        //     将 System.Collections.ArrayList 的元素复制到新 System.Object 数组中。
        //
        // 返回结果:
        //     System.Object 数组,它包含 System.Collections.ArrayList 中元素的副本。
        public virtual object[] ToArray();
        //
        // 摘要:
        //     将 System.Collections.ArrayList 的元素复制到指定元素类型的新数组中。
        //
        // 参数:
        //   type:
        //     要创建并向其复制元素的目标数组的元素 System.Type。
        //
        // 返回结果:
        //     指定元素类型的数组,它包含 System.Collections.ArrayList 中元素的副本。
        //
        // 异常:
        //   T:System.ArgumentNullException:
        //     type 为 null。
        //
        //   T:System.InvalidCastException:
        //     源 System.Collections.ArrayList 的类型不能自动转换为指定类型。
        [SecuritySafeCritical]
        public virtual Array ToArray(Type type);
        //
        // 摘要:
        //     将容量设置为 System.Collections.ArrayList 中元素的实际数目。
        //
        // 异常:
        //   T:System.NotSupportedException:
        //     System.Collections.ArrayList 为只读。- 或 -System.Collections.ArrayList 具有固定大小。
        public virtual void TrimToSize();
    }
}

相关文章

网友评论

    本文标题:001_集合Collection

    本文链接:https://www.haomeiwen.com/subject/yfcizttx.html