Console.WriteLine("Does this look familiar?");
Console.WriteLine("Does this look {0}?", "nice");
String.Format("Does this look {0}?", "nice");
String.IsNullOrEmpty("");
String.IsNullOrWhiteSpace(" ");
"Eccleston,Tennant,Smith,Capaldi".Split(',');
int.TryParse(val, out result)