System.CodeDom.CodeAttributeArgumentCollection.CopyTo C# (CSharp) Method

CopyTo() public method

public CopyTo ( CodeAttributeArgument array, int index ) : void
array CodeAttributeArgument
index int
return void
        public void CopyTo(CodeAttributeArgument[] array, int index) {
            List.CopyTo(array, index);
        }
        

Usage Example

		public void Constructor1_Deny_Unrestricted ()
		{
			CodeAttributeArgumentCollection coll = new CodeAttributeArgumentCollection (array);
			coll.CopyTo (array, 0);
			Assert.AreEqual (1, coll.Add (caa), "Add");
			Assert.AreSame (caa, coll[0], "this[int]");
			coll.AddRange (array);
			coll.AddRange (coll);
			Assert.IsTrue (coll.Contains (caa), "Contains");
			Assert.AreEqual (0, coll.IndexOf (caa), "IndexOf");
			coll.Insert (0, caa);
			coll.Remove (caa);
		}