You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
326 B
C#

Copying to the Clipboard
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Windows.Forms;
public class MainClass
{
public static void Main(string[] args)
{
Clipboard.SetDataObject("data");
}
}