public static string Left( this string input, int count )
string prefix = "Hello World".Left(5); // returns "Hello"