Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Copy to Clipboard

Tags:

I'd like to make a console application in C#, where the user will type something, let's say "Dave" and then it'll output "Name: Dave" and copy the "Name: Dave" to the users clipboard. So is there a way to have the "Name: " + Console.ReadLine(); copied to the users clipboard automatically?

like image 906
user2923446 Avatar asked Oct 31 '13 13:10

user2923446


People also ask

Huruf c melambangkan apa?

Logo C merupakan sebuah lambang yang merujuk pada Copyright, yang berarti hak cipta.

C dalam Latin berapa?

C adalah huruf ketiga dalam alfabet Latin. Dalam bahasa Indonesia, huruf ini disebut ce (dibaca [tʃe]).

Bahasa C digunakan untuk apa?

Meskipun C dibuat untuk memprogram sistem dan jaringan komputer namun bahasa ini juga sering digunakan dalam mengembangkan software aplikasi. C juga banyak dipakai oleh berbagai jenis platform sistem operasi dan arsitektur komputer, bahkan terdapat beberepa compiler yang sangat populer telah tersedia.

Bahasa C dibuat pertama kali oleh siapa dan tahun berapa?

Bahasa pemrograman C ini dikembangkan antara tahun 1969 – 1972 oleh Dennis Ritchie. Yang kemudian dipakai untuk menulis ulang sistem operasi UNIX. Selain untuk mengembangkan UNIX, bahasa C juga dirilis sebagai bahasa pemrograman umum.


1 Answers

You'll need to reference a namespace:

using System.Windows.Forms; 

Then you can use:

Clipboard.SetText("Whatever you like"); 

EDIT

Here's a copy and paste solution that works for me

using System; using System.Windows.Forms;  namespace ConsoleApplication1 {     class Program     {         [STAThread]         private static void Main(string[] args)         {             Console.WriteLine("Say something and it will be copied to the clipboard");              var something = Console.ReadLine();              Clipboard.SetText(something);              Console.Read();         }     } } 
like image 126
Alex Avatar answered Sep 24 '22 16:09

Alex