C# Setup Instructions (by Federico Tondolo) If you'd like to work on and compile labs on your local machine, you will need to download a C# compiler. -----Instructions for Windows----- To be able to compile and run C# files, Windows users need to only install the C# compiler as the output is natively executable. 1. Go to https://dotnet.microsoft.com/download/dotnet-framework/net48 2. Download and install Microsoft .NET framework 3. To run the compiler open CMD and type in (assuming you’re in the same directory as your C# files): C:\Windows\Microsoft.NET\Framework\\csc.exe /t:exe /out:.exe .cs 4. Now the executable is simply run by typing its filename (extension included) and its call parameters! e.g. .exe 100 0 -5 -----Installation for Mac----- So, to run your code on a Mac machine at home you need a compiler: csc, and a compatibility layer to run the executables: mono. Thankfully mono comes with csc so installation's a snap! 1) Head to https://www.mono-project.com/docs/getting-started/install/mac/ 2) Download the mono installer and install mono 3) Restart your computer (DO NOT SKIP THIS STEP!) 4) Add mono and its associated tools to your PATH by running this command: export PATH=/Library/Frameworks/Mono.framework/Versions/Current/bin/:${PATH} 5) You should now be able to run mono and csc directly from your command line! As an example, to compile Lab 1 type: csc TestSprite.cs Sprite.cs and to run the resulting executable type: mono TestSprite.exe 20 50 0 25 0 100 100 20 50 0 20 0 100 100 0 -5