Clipboard.SetText(\"\") throws me an error - \"Value cannot be null\". So how do I copy an empty string using Clipboard.SetText?
Clipboard.SetText(\"\")
Clipboard.SetText
I have alr
See Clipboard.Clear Method (System.Windows.Forms) (MSDN).
Clipboard.Clear();
will clear the clipboard, so you will "paste" an empty string.