Scot lilly rpg game Flashcards
Is C$ case sensitive?
C# is case-sensitive
When you name anything in C# (class, variable, function, etc.), the casing you use is important. “Player” is different from “player” and “PLAYER”.
editor
An editor is basically a word processor for your program.
IS C# is a “high-level” language?
C# is a “high-level” language
This means is that C# looks similar to natural English – well, at a certain level.
So it’s much easier to program in a high-level language, and letting the computer compile that into a low-level language wich it understands
What is compiling/building?
Before a computer can run a C# program, the program needs to be converted into something a computer can read. This is called compiling.
In Visual Studio, you compile your program by either selecting the “Build” menu option or the “Start” menu option (which compiles the program and then runs it).
Build
Before a computer can run a C# program, the program needs to be converted into something a computer can read. This is called compiling.
Build – This “compiles” your solution – converts it from C# code to code that the computer can understand. This will also tell you if there are any problems in your solution.
Start
“Start” menu option (which compiles the program and then runs it).
Start – This builds (compiles) your program and runs it – so you can actually use it.