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 6115387
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:05:07+00:00 2026-05-23T15:05:07+00:00

Where can I see System.Diagnostics.Debug and System.Diagnostics.Trace output in MonoDevelop? I would think it

  • 0

Where can I see System.Diagnostics.Debug and System.Diagnostics.Trace output in MonoDevelop? I would think it should appear in the ApplicationOutput window, but it’s nowhere to be found.

  • 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-23T15:05:07+00:00Added an answer on May 23, 2026 at 3:05 pm

    The Application Output window will show the results of Console.WriteLine.

    If you want something that works with Visual Studio on Windows as well as on Mono, then add a static method like the following to your Program.cs file:

        public static void WriteLine(String fmt, params Object[] args)
        {
            string op;
            if (fmt == null)
                op = String.Empty;
            else if (args == null || args.Length == 0)
                op = fmt;
            else
                op = String.Format(fmt, args);
            Trace.WriteLine(op);
            DateTime now = DateTime.Now;
            string outString = String.Format("{0,4}-{1,2:0#}-{2,2:0#} {3,2:0#}:{4,2:0#}:{5,2:0#} : {6}",
                now.Year, now.Month, now.Day,
                now.Hour, now.Minute, now.Second,
                op);
            Console.WriteLine(outString);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want see the source code of System.Web.Routing.RouteValueDictionary class. But Reflector can't disassemble it
I thought this would be simple, but I can't see how to tell WCF
It seems that the System.Diagnostics.Debug , and System.Diagnostics.Trace are largely the same, with the
I'm quite familiar with the System.Diagnostics.Process class. But, I'm wondering about how I can
My code is running elevated but nothing can see/execute c:\windows\system32\rstrui.exe (System Restore Point UI).
I see that I can start processes with System.Diagnostics.Process. I'm trying with the following
I'm trying to debug a C# application. The method: System.Diagnostics.Debug.WriteLine(something); should do the work,
Resharper is showing a Possible System.NullReferenceException warning. I however can't see how I can
I can see people asking all the time whether multiple inheritance should be included
I should probably know this already, but I'm not sure and I don't see

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.