TemplateGroupCollection.IndexOf(TemplateGroup) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定的 TemplateGroup 对象在集合中的索引。
public:
int IndexOf(System::Web::UI::Design::TemplateGroup ^ group);
public int IndexOf (System.Web.UI.Design.TemplateGroup group);
member this.IndexOf : System.Web.UI.Design.TemplateGroup -> int
Public Function IndexOf (group As TemplateGroup) As Integer
参数
- group
- TemplateGroup
要在集合中定位的 TemplateGroup。
返回
集合中 group
的第一个匹配项的索引(索引从零开始);否则,如果 group
不在集合中,则为 -1。
注解
方法 IndexOf 通过使用 Equals 对象上的 TemplateGroup 方法确定相等性。
执行 IndexOf 线性搜索;因此,平均执行时间与 Count 属性成正比。 由于模板组集合通常较小,因此线性搜索操作的性能并不重要。