[C#] Copy/Paste from Clipboard


Copy to Clipboard:
        //copy the text
        private void btnCopy_Click(object sender, EventArgs e)
        {
            Clipboard.SetText(txtSrc.Text);
        }

Paste from Clipboard:
        //paste the text
        private void btnPaste_Click(object sender, EventArgs e)
        {
            txtDest.Text = Clipboard.GetText();
        }