public static bool AtLastLIne(this TextBoxBase textBox) => textBox.CurrentLineIndex() == textBox.Lines.Length - 1;
public static string CurrentLine(this TextBoxBase textBox) => textBox.Lines[textBox.CurrentLineIndex()];