Show Menu
Cheatography

C# Cheat Sheet (DRAFT) by

C# Cheat Sheet - Intermediate Level

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Skeleton Code

 
using System;

namespace name {
 ­ ­ ­ ­ ­class classname {
 ­ ­ ­ ­ ­ ­ ­ ­ ­ ­static void Main (string[] args) {
 ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ ­Con­sol­e.W­rit­eLi­ne(­"­Hello World!­");
 ­ ­ ­ ­ ­ ­ ­ ­ ­ }
 ­ ­ ­ ­ }
}
 

Methods

Method - A group of statements that perform a particular task.