[C#] Clipboard snippet
if (Clipboard.ContainsText() == true)
{
if (Clipboard.GetText() != LastClip)
{
ClipTxt.Text = ClipTxt.Text + "\r\n" + Clipboard.GetText() + "\r\n";
LastClip = Clipboard.GetText();
}
}Old code is old. Just thought I would share it since im working on more things.