using System;
class Program {
public static void Main() {
Console.WriteLine("Hello World!");
Console.ReadLine();
}
}
I save the file as 1.java, 2.obj and 3.txt.
I then use the Visual Studio Command Prompt to compile the file: csc 1.java csc 2.obj csc 3.txt
Surprisingly, it compiles all the 3 files into an executable and executes it successfully.
Could anyone give me an explanation on this behavior?
