Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
104 views

Calling Console.WriteLine before allocating the console

I've recently encountered the following problem with my application: it didn't show any console output, though the console had been allocated by using AllocConsole. I managed to figure out soon that ...
3
votes
3answers
439 views

Is there a way to delete a character that has just been written using Console.WriteLine?

Is there any way to delete the last character from the console, i.e. Console.WriteLine("List: apple,pear,"); // Somehow delete the last ',' character from the console. Console.WriteLine("."); // Now ...
3
votes
5answers
1k views

C# clear Console last Item and replace new? Console Animation

The following CShrap Code(just sample): Console.WriteLine("Searching file in..."); foreach(var dir in DirList) { Console.WriteLine(dir); } Prints Output As: ...
3
votes
3answers
1k views

Calling Console.WriteLine from multiple threads

Why does Console.WriteLine work from multiple threads?
2
votes
2answers
68 views

Writing console lines to file

I have a console app in c# and am trying to make it so that all the lines in the console are written into a file. I have tried using a streamwriter. using (StreamWriter writer = new ...
2
votes
8answers
359 views

Creating and showing dynamic error messages (Not working inside UpdatePanel)

My web forms inherits a class called MyPageMain, which inhertis System.Web.UI.Page and is located on the App_Code folder. In this MyPageMain class I created this method, to record and output ...
2
votes
5answers
844 views

How can I display my results in C#?

I have a program see below I made the method but I want to display it in the console and not on the easy way like console.writeline(str.length). I want using the method I made. could someone help ...
2
votes
6answers
1k views

Calling Console.WriteLine(ex.Message) to prevent warning message

We usually catch exception in the upper level of a code like the GUI (forms). But I usually have this kind of code try { } catch(Exception ex) { Console.WriteLine(ex.Message); ...
1
vote
4answers
301 views

Infrequent hangs in a multi-threaded C# console application when using Console.Writeline() or Console.Write()

I have written a console application that makes use of console.write and console.writeline to provide some logging. The application is a server application that uses asynchronous ...
1
vote
1answer
433 views

Is console.writeline thread safe? [closed]

Possible Duplicate: Calling Console.WriteLine from multiple threads Just want to know if multiple threads call the same console.writeline, will it cause deadlock?
1
vote
5answers
286 views

question about print List<T> to screen

A question about List; When i have "List<PlugwiseMessage> msg" with the value's from the picture : I only get PlugwiseLib.BLL.BC.PlugwiseMessage as output. But how can i see the value's from ...
1
vote
1answer
538 views

Getting Console output to display from Gallio & xunit.net

Previously when executing unit tests with xunit.net / testdriven.net I could see output written to the console (via Console.WriteLine) displayed in the output window. I'm now using the Gallio ...
0
votes
1answer
40 views

Initialise System::String^ with literal but not string::c_str() or char[]

I've recently started learning about .net and the Windows API and I'm currently writting a class which talks the serial port. In order to write a line to the serial port, I use the WriteLine function ...
0
votes
1answer
93 views

How to read sql generated by NHibernate in Visual Studio

According to what I know, there are 3 ways to read the sql script generated by NHibernate: 1. log4net 2. sql profiler 3. show_sql = true Here I just want to talk about 3rd one for it's said that I ...
0
votes
3answers
124 views

How to read result from Console.WriteLine() in Output window in Visual Studio 2010

To simply it, I just add one line in the Web Application: void Application_Start(object sender, EventArgs e) { // Code that runs on application startup ...
0
votes
2answers
93 views

C# CodeDom Console.WriteLine + MethodReference

I am attempting to create a Console.WriteLine statement (shown below) using CodeDom. This is giving me mainly because of the Environment.NewLine call - I can't figure out the proper way of embedding a ...
0
votes
1answer
29 views

amout of write line instaces vary depending on YVAL variable

I have a mesurement that could be any random value, just for fun well make that 2440mm i need to divde that by the industry standard of 610mm which comes out at 2440 / 610 = 4 Programicaly written ...
0
votes
5answers
1k views

(Console.BufferHeight) I can't see/scroll to see all the console output with Console.WriteLine

When I run this code, the number at the top of the output window is 99701. Why don't I get to see all the way through 1? I actually see all the numbers getting outputted, but on the console window, I ...
0
votes
4answers
155 views

What interface or method should my class implement to print what I want in Console.WriteLine?

I have an object of class F. I want to output the contents of the object using Console.WriteLine for quick and dirty status updates like this: Console.WriteLine(objectF); This prints out only the ...