Check whether file is found before trying to dereference it (#759)

This commit is contained in:
Ed Elliott 2020-10-30 23:26:01 +00:00 коммит произвёл GitHub
Родитель 059686cc2d
Коммит d252590bb7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -264,7 +264,7 @@ namespace Microsoft.Spark.Utils
{
Type type = AssemblyLoader.LoadAssembly(
td.AssemblyName,
td.AssemblyFileName).GetType(td.Name);
td.AssemblyFileName)?.GetType(td.Name, true);
if (type == null)
{
throw new FileNotFoundException(