开发者

How to copy to the clipboard in F#?

开发者 https://www.devze.com 2022-12-12 15:30 出处:网络
And more specific开发者_开发知识库ally, in FSI?You can programatically control the clipboard using the Clipboard class in the System.Windows.Forms namespace. (The required assembly is brought in by de

And more specific开发者_开发知识库ally, in FSI?


You can programatically control the clipboard using the Clipboard class in the System.Windows.Forms namespace. (The required assembly is brought in by default to FSI.)

open System.Windows.Forms
Clipboard.SetText("Hello from FSI!")
0

精彩评论

暂无评论...
验证码 换一张
取 消