Click or drag to resize

ReflectionExtensionsEnumerateAllTypes Method (IEnumerableAssembly)

Gets all types in all assemblies, including nested types.

Namespace:  TomsToolbox.Essentials
Assembly:  TomsToolbox.Essentials (in TomsToolbox.Essentials.dll)
Syntax
public static IEnumerable<Type> EnumerateAllTypes(
	this IEnumerable<Assembly?> assemblies
)

Parameters

assemblies
Type: System.Collections.GenericIEnumerableAssembly
The assemblies.

Return Value

Type: IEnumerableType
The types in all assemblies.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableAssembly. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also