Answers for "limit line count richtextbox"

0

limit line count richtextbox

var lines = richTextBox1.Lines;
richTextBox1.Lines = lines.Skip(lines.Length - 2).ToArray();
Posted by: Guest on August-20-2020

Browse Popular Code Answers by Language