共用方式為


NamespaceCollection.Item[Int32] 屬性

定義

取得或設定位於集合中所指定索引處的 NamespaceInfo 物件。

public:
 property System::Web::Configuration::NamespaceInfo ^ default[int] { System::Web::Configuration::NamespaceInfo ^ get(int index); void set(int index, System::Web::Configuration::NamespaceInfo ^ value); };
public System.Web.Configuration.NamespaceInfo this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.NamespaceInfo with get, set
Default Public Property Item(index As Integer) As NamespaceInfo

參數

index
Int32

集合中 NamespaceInfo 物件的索引。

屬性值

NamespaceInfo

位於指定索引處的 NamespaceInfo 物件;如果該索引處沒有任何物件,則為 null

範例

下列程式碼範例示範如何使用 Item[] 屬性。 此程式碼範例是提供給 類別之較大範例的 PagesSection 一部分。

// Get all current Namespaces in the collection.
for (int i = 0; i < pagesSection.Namespaces.Count; i++)
{
  Console.WriteLine(
      "Namespaces {0}: '{1}'", i,
      pagesSection.Namespaces[i].Namespace);
}
' Get all current Namespaces in the collection.
Dim i As Int16
For i = 0 To pagesSection.Namespaces.Count - 1
  Console.WriteLine( _
   "Namespaces {0}: '{1}'", i, _
   pagesSection.Namespaces(i).Namespace)
Next

備註

如果物件已存在於指定的索引處,這個屬性就會 NamespaceInfo 覆寫物件,否則會建立新的 物件並加入至集合。

適用於

另請參閱