public static void Main()
string month = "January";
Console.WriteLine("{0} to {1} characters long)", month, length);
singleLetter = month[whichLetter];
Console.WriteLine("Character {0} of {1} is {2}", whichLetter, month, singleLetter);
subString = month.Substring(startPos, howMany);
Console.WriteLine("Substring is {0}" , subString);
string saying = " has 31 days.";
combined = month + saying;
Console.WriteLine("Joined string is {0}", combined);