Click or drag to resize

CodeObjectGetAllChildrenT Method

Get an enumerator for all children objects of type T in the CodeObject and in any child CodeObjects (recursively).

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public IEnumerable<T> GetAllChildren<T>()
where T : CodeObject

Type Parameters

T
May be CodeObject to return all objects, or a derived type to return only objects of that type (or further derived types).

Return Value

Type: IEnumerableT
See Also