我正在尝试在 Visual Studio 2012 中构建 Umbraco cms 源代码,并在 PluginManager.cs 的下面一行中不断收到以下错误
try
{
**var typeInstance = (T)Activator.CreateInstance(t);**
instances.Add(typeInstance);
}
catch (Exception ex)
{
LogHelper.Error<PluginManager>(String.Format("Error creating type {0}", t.FullName), ex);
if (throwException)
{
throw ex;
}
}
错误指向这一行
**var typeInstance = (T)Activator.CreateInstance(t);**
并说“对象引用未设置为对象的实例。”