我想通过代码创建一个 .cs 文件的 dll,通过在 c# 中编程,任何人都可以帮助我如何做到这一点,这意味着我有两个类“Class1”和“Class2”,我想为 class1 创建 dll编程,所以我怎么可能请帮我做。
编辑:
ProcessStartInfo info = new ProcessStartInfo(@"C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe");
info.Arguments = @" /out:E:\pratik\file option\Class1.dll Class1.cs";
info.UseShellExecute = true;
Process.Start(info);
Console.ReadLine();
我已使用此代码创建它正在运行的 dll,但我没有在给定路径上获取 dll