Click or drag to resize

TypeDeclGetNestedTypeDecls Method

Get all nested type declarations of the TypeDecl.

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

Parameters

recursive (Optional)
Type: SystemBoolean
True to recursively return all nested type declarations, otherwise false.
currentPartOnly (Optional)
Type: SystemBoolean
True to get nested types from current part only if the TypeDecl is partial, otherwise false.

Return Value

Type: IEnumerableTypeDecl
See Also