copy text from a text box csharp

Code Example - copy text from a text box csharp

                
                        if(textBox1.SelectionLength>0)
            {
                textBox1.Copy();
            }