FeatureAttributeCollection.Item

FeatureAttributeCollection indexer (1 of 2)

获取或设置FeatureAttribute在指定的索引处.

public FeatureAttribute this[int index] { get; set; }
范围描述
index要获取或设置的属性的从零开始的索引。

返回值

指定索引处的属性。

例外

例外(健康)状况
ArgumentOutOfRangeException索引超出范围。
InvalidOperationException尝试修改锁定的集合。

也可以看看


FeatureAttributeCollection indexer (2 of 2)

获取或设置FeatureAttribute具有指定名称.

public FeatureAttribute this[string name] { get; }
范围描述
name属性的名称。

返回值

具有指定名称的属性,或null如果没有找到。

例外

例外(健康)状况
ArgumentNullException属性名称是null.

也可以看看