←to practical programming
Lecture
  1. Structure of a C# program and Main method;
  2. Compilation, linking, and running of a C# program with csharp-mono;
  3. Make utility and makefiles;
  4. Simple output with the System.Console.Write method;
Reading
Exercises
  1. Install csharp-mono
    • In Ubuntu do sudo apt install mono-mcs;
    • In MacOS install the MacOS package from the mono-project; you might need to manually modify your $PATH after installation;
  2. Do exercise hello-world.
  3. Answer questions "compile".
Hints