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

Add() public method

public Add ( CodeNamespace value ) : int
value CodeNamespace
return int
        public int Add(CodeNamespace value) {
            return List.Add(value);
        }
        

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::Add