Added CLR Type-search to GetTypesByName. Fixed error caused by generic type searching from Lua.
This commit is contained in:
committed by
Evil Factory
parent
5e03954afe
commit
27c8a3ca2e
@@ -240,9 +240,16 @@ public partial class AssemblyManager
|
||||
try
|
||||
{
|
||||
// fallback to Type.GetType
|
||||
Type t = Type.GetType(typeName, false, false);
|
||||
if (t is not null)
|
||||
{
|
||||
types.Add(byRef ? t.MakeByRefType() : t);
|
||||
return types;
|
||||
}
|
||||
|
||||
foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
|
||||
{
|
||||
Type t = assembly.GetType(typeName, false, false);
|
||||
t = assembly.GetType(typeName, false, false);
|
||||
if (t is not null)
|
||||
types.Add(byRef ? t.MakeByRefType() : t);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user