Complier efficiency

  • Thread starter Thread starter Ben
  • Start date Start date
B

Ben

Suppose my program main.exe is built from
two modules: main.cs and lib.cs.

Most of the time, I just change main.cs. But, I
find that I have to compile lib.cs too. This is
not efficient. How can I avoid that?

This is how I compile:
csc main.cs lib.cs
 
Back
Top