As we go into details of any programming language, you'll find that documentation is your best friend for learning and improving your language skill set:
A comment is a programmer-readable explanation or annotation in the source code of a computer program. Anything within comments will be ignored by a compiler and are just there to help us programmers understand the code better.
You'll use comments for documentation and explanation of your code. Anytime you see comments, just know it's there for clarity.
Also known as single-line comment, line comment syntax is prepended with //
// Example line comment
Also known as multi-line comment, block comment syntax is surrounded with /* */
. Also, though not required, this block comment syntax usually contains a *
at the beginning of each new line.
/* Example
* block
* comment
*/
Unless otherwise specified, each line of source code in C# must be terminated with a ;
// Here is a simple variable assignment
var message = "Hello World";
Unless otherwise specified, the C# language IS case sensitive. User
is distict from user
.
When working with programming languages, at times you'll want to output something for your user or yourself. Also, at times, you'll want to read user input. In most languages, this is made available. Don't worry if this doesn't make total sense yet. We'll get there.
// Write a message to the console
Console.WriteLine("Message to write out");
Output:
Message to write out