copy to clipboard c# unity editor code example

Example 1: unity how to copy something to the clipboard

GUIUtility.systemCopyBuffer = "test";

Example 2: copy to clipboard unbity

//Add this to any class and just set it with clipboard = "text";
 
 internal static string Clipboard {
   get
   {
     TextEditor _textEditor = new TextEditor();
     _textEditor.Paste();
     return _textEditor.text;
   }
   set
   {
     TextEditor _textEditor = new TextEditor
     {text = value};

     _textEditor.OnFocus();
     _textEditor.Copy();
   }
}