How to Set/Get Clipboard in Unity

Hi i am working on a project and i need to add copy paste functionality to copy or paste image , i tried many methods but nothing worked …
Please help!

Hi, what exactly are you trying to do, I could use some additional context? Is this code for the Editor or for during runtime?

hi ,i need this code for runtime.
i want to copy/paste image in cross platform runtime.

Hi, I did some digging and came across this class in the .net framework:

Now, this class is unfortunately not supported in mono, so I unfortunately can’t help you with that.

But on the editor side of things, you can simply just use GUIUtility.systemCopyBuffer;

Sorry that I was unable to find anything that answers your question.

Thank you @Generalisk for your help .