本文整理汇总了C#中System.CodeDom.CodeTypeParameterCollection.Insert方法的典型用法代码示例。如果您正苦于以下问题:C# CodeTypeParameterCollection.Insert方法的具体用法?C# CodeTypeParameterCollection.Insert怎么用?C# CodeTypeParameterCollection.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.CodeDom.CodeTypeParameterCollection
的用法示例。
在下文中一共展示了CodeTypeParameterCollection.Insert方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Insert_Null
public void Insert_Null ()
{
CodeTypeParameterCollection coll = new CodeTypeParameterCollection ();
coll.Insert (0, (CodeTypeParameter) null);
}
示例2: Insert
public void Insert ()
{
CodeTypeParameter tp1 = new CodeTypeParameter ();
CodeTypeParameter tp2 = new CodeTypeParameter ();
CodeTypeParameterCollection coll = new CodeTypeParameterCollection ();
coll.Add (tp1);
Assert.AreEqual (1, coll.Count, "#1");
Assert.AreEqual (0, coll.IndexOf (tp1), "#2");
coll.Insert (0, tp2);
Assert.AreEqual (2, coll.Count, "#3");
Assert.AreEqual (1, coll.IndexOf (tp1), "#4");
Assert.AreEqual (0, coll.IndexOf (tp2), "#5");
}