Boolean = True | False
Object = null
String constants must be in ' ' or " " quotes, example:
s = 'Hello';
s = "Hello World!";
The S# parser supports following number formats:
//Hex
h = 0xAAFFAA;
//Unsigned int
u = 3u;
//long
l = 31231231278l;
//unsigned long
ul = 23423234548ul;
//Double
d = 3.2312d;
//Single, Float
f = 3424.123f;
//Decimal
m = 23123.25434543m;
//With exponent
n1 = 4e+3;
n2 = 6.32e-3;