Well, let me make it clear again. I have a console application with many classes, in each class there is at least one Console.WriteLine("text") line. I defined some arguments that when running the application, it output exactly what I wrote in classes. There, I want to define an argument that when I run the app with this argument, there will be no output on the console screen but the console window still appears. The argument maybe something like "-s". So is there any way I can do this without using the "if" condition in each class and passing an parameter through classes? Many thanks.

P/S: I've searched thru the internet and found out some articles related to this, but most of the answers were to hide the console window. I think this question should be what the others meant.

link|improve this question
You can parse input -s in application main function, then redirect console output to file, for example, not to screen, using Console class methods – Artur Mustafin Sep 14 '11 at 7:31
1  
Usually you should use Debug/Trace to control this kind of behavior. – sajoshi Sep 14 '11 at 7:43
@Artur: actually I don't want the console to output to any other file, I just want to "hide" the output, and still I need some text to appear on the console screen, not hiding all. AMisssico's answer solved this problem of mine, I just need to set the output stream to a null TextWriter and then set back to standard output stream whenever I want. – Serge Wazuki Sep 15 '11 at 4:40
@sajoshi: not really understand your suggestion. How does Debug/Trace work in this situation? – Serge Wazuki Sep 15 '11 at 4:43
I am not sure why would like to hide the output. My understanding that you are outputting the information so that you have some trace information available. – sajoshi Sep 15 '11 at 7:29
show 2 more comments
feedback

5 Answers

up vote 2 down vote accepted

Use Console.SetOut (http://msdn.microsoft.com/en-us/library/system.console.setout.aspx) and pass in a "null" text writer. The idea on -s perform a Console.SetOut(new StreamWriter()).

The example for the Console.SetOut method will help you get started.

In addition, you can easily add logging using this method.

link|improve this answer
Thank you a lot. This works like a charm. – Serge Wazuki Sep 14 '11 at 9:18
feedback

Use these methods to redirect output (programmatically):

    Console.SetIn(...);
    Console.SetOut(...);
    Console.SetError(...);
link|improve this answer
I like your answer, too. But AMissico's answer is more detailed. Thanks anyway ^^. – Serge Wazuki Sep 14 '11 at 9:18
feedback
app.exe > nul

redirects output to nowhere. FYI: Using command redirection operators

link|improve this answer
-1; didn't answer question. – AMissico Sep 14 '11 at 7:46
1  
+1 i am pretty sure he meant for a solution in code, but this is really cool :D – Răzvan Panda Sep 14 '11 at 7:54
sorry but I really mean to pass in a parameter, so that I can define my own parameters. Furthermore, I still want to output some text such as a beginning like "Running in silent mode..." or so, if you redirect the output to nowhere, all of the output won't appear anymore. – Serge Wazuki Sep 14 '11 at 9:32
this is an awesome tip! – andryuha Jan 10 at 21:23
feedback

Have you come across Console.Clear(), you could call this in a way that makes it appear no text at all was output.

As for avoiding having to separately define this in each class you should look at inheritance. This allows you to define the functionality in one place and each 'sub' class will inherit this.

link|improve this answer
I worked on a project that belongs to a previous team, not a new one. If I have to modify all the classes, this will be a disaster. – Serge Wazuki Sep 14 '11 at 9:28
@Serge - Okay I understand – m.edmondson Sep 14 '11 at 10:23
feedback

You could use log4net to define the items you want to log. It allows you to log regarding log level, regarding which class you want to log and so on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.