public static string CapLength(this string me, int length)
var Result = me.Substring(0, length);
public static void Main(string[] args)
Console.WriteLine("Hi my name is haddon and i am 12 years old");
Console.WriteLine("Hi my name is haddon and i am 12 years old".CapLength(10));