Method FindTypesByFullNameBatch
FindTypesByFullNameBatch(List<string>, List<Type>)
Searches all assemblies for a set of types by their FullName strings.
Declaration
public static void FindTypesByFullNameBatch(List<string> typeNames, List<Type> resultList)
Parameters
Type | Name | Description |
---|---|---|
List<string> | typeNames | A list containing the FullName strings of the types to find. |
List<Type> | resultList | An empty list to which any matching Type objects are added. A
result in |
Remarks
If a type name in typeNames
is not found, then the corresponding index of resultList
is set to null
.