Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3441558
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:34:03+00:00 2026-05-18T08:34:03+00:00

I want to copy the whole output of a console application programmatically into clipboard

  • 0

I want to copy the whole output of a console application programmatically into clipboard (so user can get this automatically without tinkering with cmd window).

I know how to access clipboard. I dont know how to get a console window text from C#.

C# 3.5 / 4

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T08:34:04+00:00Added an answer on May 18, 2026 at 8:34 am

    One basic solution below (just redirecting standard output to a StringBuilder instance).
    You probably need to add the reference to System.Windows.Forms yourself in a console application.

    using System;
    using System.IO;
    using System.Text;
    using System.Windows.Forms;
    
    public class Redirect
    {
        [STAThread()]
        public static void Main()
        {
            StringBuilder sb = new StringBuilder();
            StringWriter sw = new StringWriter(sb);
    
            Console.SetOut(sw); // redirect
    
            Console.WriteLine("We are redirecting standard output now...");
    
            for (int i = 0; i < 10; i++) { Console.WriteLine(i); }
    
            sw.Close();
            StringReader sr = new StringReader(sb.ToString());
            string completeString = sr.ReadToEnd();
            sr.Close();
    
            Clipboard.SetText(sb.ToString());
            Console.ReadKey(); // just wait... (press ctrl+v afterwards)
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How to get the matlab's output? NOT the whole output(I know diary can help)
I want copy lib dependencies in maven into lib directory when install project. I
i want copy pdf file from application path(/data/data/package name) to sdcard.for that i have
I want to copy few files into an existing zip file using ANT script.
I want to copy the directory structure without copying the content/files. I want to
I want to copy a binary master file in a new binary file. This
I want to open mis file, copy all the data and write into a
I want to invoke a mssql procedure via php $link = mssql_connect($this->serverName, $this->user, $this->password);
I can write an app that would copy all input from cin into a
I want to copy a selection of lines from a file to another file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.