If you try to save null or an empty string using Clipboard.SetText
it will never work.
See Clipboard.SetText Method (String) (MSDN). It mentions ArgumentNullException is thrown if the text is null or Empty
for Clipboard.SetText
.
Hence you cannot achieve what you are trying to achieve.