I have recently reinstalled VS.Net and upon doing so I have lost the ability to 
create a console application.  I wrote a VERY simple test called TestOutPut to 
validate it wasn't something in my code: A process shows up in the task manager 
called "TestOutPut.exe" but no console window; VS.Net hangs after this.  I have 
tried starting the test both by F5 and F11.  The mem usage for the process 
started is 56K, the exact same as my "real code" I was trying to test.  Any 
thoughts?  I didn't have this issue until I had to re-image my machine.



CODE:
namespace com.TheHartford.TheHartford.HTSC.RAFT{
        using System;
        using System.Threading;
        class TestOutPut{
                [STAThread]
                static void Main(string[] args){
                        Int32 count = 0;
                        while(true){
                                Thread.Sleep(200);
                                Console.WriteLine("My Count: " + count);
                                count++;
                        }
                }
        }
}


*************************************************************************
This communication, including attachments, is
for the exclusive use of addressee and may contain proprietary,
confidential and/or privileged information.  If you are not the intended
recipient, any use, copying, disclosure, dissemination or distribution is
strictly prohibited.  If you are not the intended recipient, please notify
the sender immediately by return e-mail, delete this communication and
destroy all copies.
*************************************************************************



------------------------ Yahoo! Groups Sponsor --------------------~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/saFolB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 




Reply via email to