Gets or sets the namespace summary with the specified namespace name.
[C#] In C#, this property is the indexer for the Namespaces class.
[Visual Basic] Public Default Property Item( _ ByVal namespaceName As String _ ) As String [C#] public string this[ string namespaceName ] { get; set; } [C++] public: __property String* get_Item( String* namespaceName ); public: __property void set_Item( String* namespaceName, String* newValue ); [JScript] returnValue = NamespacesObject.Item( namespaceName ); NamespacesObject.Item( namespaceName ) = newValue; -or- returnValue = NamespacesObject( namespaceName ); NamespacesObject( namespaceName ) = newValue;
[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.
Namespaces Class | NDoc.Core Namespace