public static void Main()
string script = "Close on a portrait of the HANDSOME PRINCE -- as the BEAST'S giant paw slashes it.";
string scriptLower = script.ToLower();
string upperText = script.Substring(0, 8);
int len = scriptLower.Length;
string secondPart = scriptLower.Substring(8);
Console.WriteLine("{0}{1}", upperText.ToUpper(), secondPart);