System.CodeDom.CodeNamespaceCollection.AddRange C# (CSharp) Method

AddRange() public method

public AddRange ( CodeNamespace value ) : void
value CodeNamespace
return void
        public void AddRange(CodeNamespace[] value) {
            if (value == null) {
                throw new ArgumentNullException("value");
            }
            for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) {
                this.Add(value[i]);
            }
        }
        

Same methods

CodeNamespaceCollection::AddRange ( CodeNamespaceCollection value ) : void

Usage Example

		public void Constructor1_Deny_Unrestricted ()
		{
			CodeNamespaceCollection coll = new CodeNamespaceCollection (array);
			coll.CopyTo (array, 0);
			Assert.AreEqual (1, coll.Add (cn), "Add");
			Assert.AreSame (cn, coll[0], "this[int]");
			coll.AddRange (array);
			coll.AddRange (coll);
			Assert.IsTrue (coll.Contains (cn), "Contains");
			Assert.AreEqual (0, coll.IndexOf (cn), "IndexOf");
			coll.Insert (0, cn);
			coll.Remove (cn);
		}
All Usage Examples Of System.CodeDom.CodeNamespaceCollection::AddRange