←to practical programming
Questions "compile"
- What is the
Main method?
- What is
source code,
bytecode, and
executable code?
- How can you compile a C#-program which is wholly contained in one
file, say
hello.cs, into an executable bytecode?
- How do you run the resulting executable code with the mono runtime-system?
- How can you compile the C# source code in the file
cmath.cs into a bytecode library cmath.dll?
- How can you link a bytecode library, say
cmath.dll, when
compiling your file with the Main method, say main.cs?