Click or drag to resize
ReflectionUtilsHandleTypesWithAttributeT Method
Searches all loaded assemblies and returns the types which have the specified attribute and executes the specified action for those.

Namespace: Slash.Reflection.Utils
Assembly: Slash.Reflection (in Slash.Reflection.dll) Version: 1.0.6018.40175
Syntax
public static void HandleTypesWithAttribute<T>(
	Action<Type, T> action
)
where T : Attribute

Parameters

action
Type: SystemActionType, T
Action to execute for found types and their attribute.

Type Parameters

T
Type of the attribute to get the types of.
See Also