Example #1
0
        public void PutText(string text)
        {
            if (text == null)
            {
                throw new ArgumentNullException(nameof(text));
            }

            nativeClipboard.PutText(text);
        }