Build DLL - potatoscript/csharp GitHub Wiki

  • To build the Math.DLL, compile the two files Add.cs and Mult.cs as:
   csc /target:library/out:Math.DLL Add.cs Mult.cs
  • To build the executable file, TextCode.exe:
   csc/out: TestCode.exe/reference:Math.DLL TestCode.cs