Make looking up a view type slightly cheaper

This commit is contained in:
Antony Male 2015-09-25 10:39:19 +01:00
parent 7bc6a6b863
commit 000a77c4a9
1 changed files with 1 additions and 1 deletions

View File

@ -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>