copy text c# code example
Example: copy text from a text box c#
if(textBox1.SelectionLength>0)
{
textBox1.Copy();
}
if(textBox1.SelectionLength>0)
{
textBox1.Copy();
}