Click or drag to resize

NamespaceDeclGetTypeDecls Method

Get all TypeDecls declared in the NamespaceDecl, or in any nested NamespaceDecls (recursively).

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public IEnumerable<TypeDecl> GetTypeDecls(
	bool recursive = false,
	bool includeNestedTypes = false
)

Parameters

recursive (Optional)
Type: SystemBoolean
True to recursively look in child NamespaceDecls, otherwise false.
includeNestedTypes (Optional)
Type: SystemBoolean
True to include nested types, otherwise false.

Return Value

Type: IEnumerableTypeDecl
See Also