コード例 #1
0
        ///<summary>
        ///Creates a shallow copy of the ArrayList.
        ///</summary>
        ///<returns>A shallow copy of the base_scopeArrayList.</returns>
        public virtual base_scopeArrayList clone()
        {
            base_scopeArrayList al = new base_scopeArrayList();

            al.arr = (System.Collections.ArrayList) this.arr.Clone();
            return(al);
        }
コード例 #2
0
        public base_scopeArrayList GetRange(int index, int count)
        {
            System.Collections.ArrayList al   = arr.GetRange(index, count);
            base_scopeArrayList          tnal = new base_scopeArrayList();

            tnal.arr = al;
            return(tnal);
        }
コード例 #3
0
 ///<summary>
 ///Adds the elements of an base_scopeArrayList to the end of the base_scopeArrayList
 ///</summary>
 ///<param name="array_list">The base_scopeArrayList whose elements should be added to the end of the ArrayList. The base_scopeArrayList itself cannot be a null reference, but it can contain elements that are a null reference.<param>
 ///<returns>Return value is void</returns>
 public void AddRange(base_scopeArrayList array_list)
 {
     arr.AddRange(array_list);
 }
コード例 #4
0
 public void SetRange(int index, base_scopeArrayList tnarl)
 {
     SetRange(index, tnarl);
 }
コード例 #5
0
 ///<summary>
 ///Inserts the elements of a collection into the base_scopeArrayList at the specified index.
 ///</summary>
 ///<param name="index">The zero-based index at which the new elements should be inserted.<param>
 ///<param name="array_list">The base_scopeArrayList whose elements should be inserted into the base_scopeArrayList. The base_scopeArrayList itself cannot be a null reference, but it can contain elements that are a null reference.<param>
 ///<returns>Return value is void</returns>
 public void InsertRange(int index, base_scopeArrayList array_list)
 {
     arr.InsertRange(index, array_list);
 }
コード例 #6
0
		///<summary>
		///Creates a shallow copy of the ArrayList.
		///</summary>
		///<returns>A shallow copy of the base_scopeArrayList.</returns>
		public virtual base_scopeArrayList clone()
		{
			base_scopeArrayList al=new base_scopeArrayList();
			al.arr=(System.Collections.ArrayList)this.arr.Clone();
			return al;
		}
コード例 #7
0
		///<summary>
		///Adds the elements of an base_scopeArrayList to the end of the base_scopeArrayList
		///</summary>
		///<param name="array_list">The base_scopeArrayList whose elements should be added to the end of the ArrayList. The base_scopeArrayList itself cannot be a null reference, but it can contain elements that are a null reference.<param>
		///<returns>Return value is void</returns>
		public void AddRange(base_scopeArrayList array_list)
		{
			arr.AddRange(array_list);
		}
コード例 #8
0
		public void SetRange(int index,base_scopeArrayList tnarl)
		{
			SetRange(index,tnarl);
		}
コード例 #9
0
		public base_scopeArrayList GetRange(int index,int count)
		{
			System.Collections.ArrayList al=arr.GetRange(index,count);
			base_scopeArrayList tnal=new base_scopeArrayList();
			tnal.arr=al;
			return tnal;
		}
コード例 #10
0
		///<summary>
		///Inserts the elements of a collection into the base_scopeArrayList at the specified index.
		///</summary>
		///<param name="index">The zero-based index at which the new elements should be inserted.<param>
		///<param name="array_list">The base_scopeArrayList whose elements should be inserted into the base_scopeArrayList. The base_scopeArrayList itself cannot be a null reference, but it can contain elements that are a null reference.<param>
		///<returns>Return value is void</returns>
		public void InsertRange(int index,base_scopeArrayList array_list)
		{
			arr.InsertRange(index,array_list);
		}