実行時に動的クラスの作成を試していましたが、最後の行でプログラムを実行すると次のエラーが発生します。これを解決する方法を知っている人はいますか?同様の問題をオンラインで検索してみましたが、解決策はどれも役に立ちませんでした。助けてくれてありがとう
ファイルまたはアセンブリ 'file:///C:\Users\xxxx\AppData\Local\Temp\jelsfwqz.dll' またはその依存関係の 1 つを読み込めませんでした。システムは、指定されたファイルを見つけることができません。
string code2 = "using System;" +
"using System.Collections.Generic;" +
"using System.Linq;" +
"using System.Text;" +
"" +
" public sealed class CustomClass" +
" {" +
" }"
;
// Compiler and CompilerParameters
CSharpCodeProvider codeProvider = new CSharpCodeProvider();
CompilerParameters compParameters = new CompilerParameters();
CodeDomProvider compiler = CSharpCodeProvider.CreateProvider("CSharp");
// Compile the code
CompilerResults res = codeProvider.CompileAssemblyFromSource(compParameters, code2);
// Create a new instance of the class 'CustomClass'
object myClass = res.CompiledAssembly.CreateInstance("CustomClass");