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

Remove() public method

public Remove ( CodeAttributeArgument value ) : void
value CodeAttributeArgument
return void
        public void Remove(CodeAttributeArgument value) {
            List.Remove(value);
        }
    }

Usage Example

		public void Constructor0_Deny_Unrestricted ()
		{
			CodeAttributeArgumentCollection coll = new CodeAttributeArgumentCollection ();
			Assert.AreEqual (0, coll.Add (caa), "Add");
			Assert.AreSame (caa, coll[0], "this[int]");
			coll.CopyTo (array, 0);
			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);
		}
All Usage Examples Of System.CodeDom.CodeAttributeArgumentCollection::Remove