System.CodeDom.CodeTypeParameterCollection.Insert C# (CSharp) Method

Insert() public method

public Insert ( int index, CodeTypeParameter value ) : void
index int
value CodeTypeParameter
return void
        public void Insert(int index, CodeTypeParameter value) {
            List.Insert(index, value);
        }
        

Usage Example

		public void Insert_Null ()
		{
			CodeTypeParameterCollection coll = new CodeTypeParameterCollection ();
			coll.Insert (0, (CodeTypeParameter) null);
		}
All Usage Examples Of System.CodeDom.CodeTypeParameterCollection::Insert