views:

87

answers:

1

And more specifically, in fsi?

+8  A: 

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!")
Chris Smith

related questions