我有 2 个文件第一个:
public class Hello{
public void hello(){
System.Console.WriteLine("Hello!Hello!");
}
}
第二个:
class App {
public static void Main() {
Hello h = new Hello(); h.hello();
}
}
我需要知道是什么意思并执行以下每一行
1 >sn -k hello.keys
2 >csc /t:library /keyfile:hello.keys hello.cs
3 >csc /t:exe /reference:hello.dll app.cs
4 > app
5 >csc /t:library /keyfile:hello.keys hello.cs
6 >app
7 >sn -k hello.keys
8 >csc /t:library /keyfile:hello.keys hello.cs
9 > app
10 >csc /t:library hello.cs
11 >app
特别是“应用程序”行!谢谢您的帮助