Eol Comments; // extend to the End of the current Line
var text = "In double Quotes"
var c = '\n'; //Character Constant
#region Preprocessor Directives //can have Comments too
a(b.c); //Punctuation
Func <boolbytechardecimaldoubleenumfloatintlongsbyteshortstructuintushortulong ValueTypes;
object ReferenceType;
o.MethodCall();
var Number = 3.1415
this.And(base.AreStyled());
value = null; //
if (a) {} else {} //Control Keywords
continuereturn null; //Goto Keywords
var a = from x in y select z; //Linq Keywords
try {} catch {} finally {} //Exception Handling
checked {}
unsafe { fixed (..) {} }
static implicit operator...
(ref int parameter, params int[] modifiers) 
public static readonly void MethodModifiers() {};
protected internal int x; //Visibility
namespace A.B { using Keywords; }
int Property { getset; } 
event EventHandler Changed { add {} remove {} }
f = false; t = true;
if (x is int) { a = x as int; type = typeof(int); size = sizeof(int); c = new object(); }