using System;
class Program
{
static void Main()
{
//Built in types
// - Boolean type : (true | false)
// bool b = true;
// - Integral Types : sbyte, byte, char, short, ushort, int, uint, long, ulong
//Console.WriteLine ("Min = {0}", int.MinValue); // Min = -2147483648
//Console.WriteLine("Max = {0}", int.MaxValue); // Max = 2147483647
// - Floating-point Types : float, double
//double d = 123.22242433;
//Console.WriteLine(d);
//String Types
//string Name = "\"Rody\""; //Escape Sequence http://msdn.microsoft.com/en-us/library/h21280bw.aspx
//string Name = "One\nTwo\nThree"; //\n <-New Line
//string Name = "C:\\Programm\\DotNet\\Training\\Charp"; // \\ <- backslash
string Name = @"C:\Programm\DotNet\Training\Charp"; // Verbatim Literal
//Verbatim literal is a string with an @ symbol prefix as in @"Hello"
//Verbatim literals make escape sequences translate as normal printable characters to enhance readability
Console.WriteLine(Name);
//Decimal Types
}
}