Method GetTypeByName
- Namespace
- Alternet.Syntax.CodeCompletion
- Assembly
- Alternet.Syntax.Parsers.Advanced.v10.dll
GetTypeByName(string, HashSet<Assembly>, bool)
Retrieves type by its name.
public static object GetTypeByName(string name, HashSet<Assembly> assemblies, bool caseSensitive)
Parameters
name
stringSpecifies name of type.
assemblies
HashSet<Assembly>Collection of assemblies where type should be located.
caseSensitive
boolTrue to perform a case-sensitive search for type declaration, false to perform a case-insensitive search for type declaration.
Returns
- object
The found type.
GetTypeByName(string, Assembly, bool)
protected static Type GetTypeByName(string name, Assembly assembly, bool caseSensitive)