Introduction to C#:
This is not meant to be a complete tutorial on C# but rather a resource for
quick, basic information to help newbies.
Quick Notes:
- Basic Page Requirements
- Comments inside the code/li>
- Case Sensitive?
Comments inside the code:
// Single Line Comments have 2 slashes.
/* MultiLine Comments start with a slash and asterick on the first line.
* Then an asterick on the next line.
* And an asterick on the next line.
*/ Then and asterick and a slash on the last line.
/// Use 3 slashes for comments that you want to use later to build HTML Help
documentation.
(Note: To do this: On the main menu in VS.NET, select Tools/Build Comment Web
Pages then select either this solution or this project and click the OK button.
You can then view the HTML generated pages.)
Case Sensitive?:
Yes! C# is a case sensitive language.
myWord = myWord
myWord != myword, MyWord, myworD or any other combination!