mirror of https://github.com/AMT-Cheif/Stylet.git
Make looking up a view type slightly cheaper
This commit is contained in:
parent
7bc6a6b863
commit
000a77c4a9
|
@ -157,7 +157,7 @@ namespace Stylet
|
|||
/// <returns>Type for that view name</returns>
|
||||
protected virtual Type ViewTypeForViewName(string viewName)
|
||||
{
|
||||
return this.ViewAssemblies.SelectMany(x => x.GetExportedTypes()).FirstOrDefault(x => x.FullName == viewName);
|
||||
return this.ViewAssemblies.Select(x => x.GetType(viewName)).FirstOrDefault();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in New Issue