NamespaceDefinition.NamespaceDefinitions 属性

定义

获取属于当前命名空间定义的直接子级的命名空间定义。Gets the namespace definitions that are direct children of the current namespace definition.

public:
 property System::Collections::Immutable::ImmutableArray<System::Reflection::Metadata::NamespaceDefinitionHandle> NamespaceDefinitions { System::Collections::Immutable::ImmutableArray<System::Reflection::Metadata::NamespaceDefinitionHandle> get(); };
public System.Collections.Immutable.ImmutableArray<System.Reflection.Metadata.NamespaceDefinitionHandle> NamespaceDefinitions { get; }
member this.NamespaceDefinitions : System.Collections.Immutable.ImmutableArray<System.Reflection.Metadata.NamespaceDefinitionHandle>
Public ReadOnly Property NamespaceDefinitions As ImmutableArray(Of NamespaceDefinitionHandle)

属性值

ImmutableArray<NamespaceDefinitionHandle>

命名空间定义的不可变数组,它是当前命名空间定义的直接子级。An immutable array of namespace definitions that are direct children of the current namespace definition.

注解

例如:For example:

  • System.object 是 System 的直接子项。System.Collections and System.Linq are direct children of System.
  • System.object 是 System.object 的直接子级。System.Collections.Generic is a direct child of System.Collections.
  • System.web 是 system 的直接子级。System.Collections.Generic is not a direct child of System.

适用于