gpt4 book ai didi

c# - 如何在 C# 中写入运行时生成的 .dll 文件?

转载 作者:行者123 更新时间:2023-11-30 22:52:04 24 4
gpt4 key购买 nike

我必须在运行时更改 .dll 文件的内容,但不能这样做,因为它正在使用并得到一个

InvalidOperationException

相反。

我目前正在研究一种在运行时为使用 Unity 制作的游戏编译 C# 代码的方法。使用 Microsoft.CSharp.CSharpCodeProviderSystem.CodeDom.Compiler.CompilerParamters 类,我有一个可以运行的系统,它允许我编译代码并将其输出为 .dll 文件,所以我可以将它与其他类一起使用。如果您需要了解更多关于我执行此操作的方式,请查看 the tutorial我使用了(以及下面提到的更改)。

但是,编译只能运行一次,因为下次运行编译器时,.dll 文件已经存在,我得到以下错误消息:

Could not write to file `fileName'. Win32 IO returned 1224. Path: path/fileName.dll

这些是我的代码中最重要的部分:

public void Compile() {
CSharpCodeProvider provider = new CSharpCodeProvider();
CompilerParameters parameters = new CompilerParameters();
//...
parameters.GenerateInMemory = false; //generates actual file
parameters.GenerateExecutable = false; //generated .dll instead of .exe
//...
parameters.OutputAssembly = Application.dataPath + className + ".dll";
CompilerResults results = provider.CompileAssemblyFromSource(parameters, code);
//...
Assembly assembly = results.CompiledAssembly;
Type program = assembly.GetType("GameLevel." + className);
MethodInfo excecuteMethod = program.GetMethod("Excecute");

excecuteMethod.Invoke(null, null);
}

我真的不想每次都给文件起一个不同的名字,因为那样会使在其他类中使用它变得很痛苦。我假设这可以通过以某种方式告诉游戏旧的 .dll 文件不再使用来解决,因为在该方法执行后甚至不应该是这种情况,对吧?

非常感谢您的回答!

最佳答案

正如我在评论中所说,我经常做这件事。我有一个编译公式的微积分引擎。每次公式更改时,都会重新编译。每次我需要运行一个公式时,我都会实例化它的类。但....每次重新编译时,我都会创建一个名称不同的新 dll。所以我为名称使用时间戳,为类名使用时间戳。每次实例化时,我都会寻找最新的dll

所以我在 dll 中的类看起来像:

public class MyGeneratedClass_20191024103000 {
// do stuff
}

程序集创建(伪代码):

aseemblyManager.CreateLibrary(OUTPUT_DLLS_PATH + "\\Calculus_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".dll", refs, sourcecode) ... etc

组装加载:

string pathNewest = ListFolderSortByDate(); //you should also get the timestamp
assembly = Assembly.LoadFrom(pathNewest ); //register dll
mytype = assembly.GetType("mycalculus");

最后,实例化:

 myobject= Activator.CreateInstance(mytype , new object[] { some parameters });
mytype .GetMethod("Calculate" + timestamp).Invoke(myobject, arrParam);

关于c# - 如何在 C# 中写入运行时生成的 .dll 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58541916/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com