March 2016
Intermediate to advanced
550 pages
10h 57m
English
When you install Visual Studio, other tools are installed too. One of those tools is the Developer Command Prompt for VS2015 that has its path set to find developer tools such as the C# compiler.
Start Notepad (or your favorite text editor) and enter the following code:
class Program { static void Main() { System.Console.
WriteLine("Hello C#!"); } }You can type the code all on one line or spread it out over multiple lines and indent your lines to make it easier to read.
C# is case sensitive, meaning that you must type uppercase and lowercase characters exactly as shown in the preceding code. C# is not whitespace sensitive, meaning that it does not care if ...
Read now
Unlock full access