我正在使用Mono.Cecil DLL 文件并编写以下代码:
AssemblyDefinition sourceAssembly = AssemblyFactory.GetAssembly(assemblyPath);
我的项目没有被编译,因为它无法找到“AssemblyFactory”类。好像这个类根本不存在于 DLL 文件中。我添加了 mono.cecil.dll 文件作为对我的项目的引用。这个类是否存在于 DLL 文件之外的某个地方,可能存在于.NET级别的其他 DLL 文件中?