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
I think you need to do
Clipboard.Clear()
From MSDN
Clears any data from the system Clipboard.