clearz Posted September 10, 2003 Posted September 10, 2003 Hi I am using a texteditor to write my c# programs. Currently I have to write all my classes in one big file to get it to compile. I would like to keep my classes in seperate files in the same directory as my main class but the c# compiler will not find them. How do I go about getting the compiler to see them. Thanks John Cleary Quote
*Experts* Volte Posted September 10, 2003 *Experts* Posted September 10, 2003 (edited) You can use wild-cards, so do something like this:csc.exe /target:winexe /out:myprog.exe *.csAlternatively, specify them one by one:csc.exe /target:winexe /out:myprog.exe file1.cs file2.cs Edited September 10, 2003 by Volte Quote
clearz Posted September 10, 2003 Author Posted September 10, 2003 Thanks the wildcard worked perfectly. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.