http://bugzilla.novell.com/show_bug.cgi?id=594597

http://bugzilla.novell.com/show_bug.cgi?id=594597#c0


           Summary: Cannot debug console applications locally with
                    monotools-2.0
    Classification: Mono
           Product: Mono: Tools
           Version: unspecified
          Platform: x86-64
        OS/Version: Windows Vista
            Status: NEW
          Severity: Major
          Priority: P5 - None
         Component: Visual Studio Integration
        AssignedTo: [email protected]
        ReportedBy: [email protected]
         QAContact: [email protected]
          Found By: Component Test
           Blocker: ---


Description of Problem:

a simple console application which uses Console.ReadLine and Console.WriteLine
cannot be debugged with monotools 2.0 locally. Console.ReadLine doesn't block

   using System;
   using System.Collections.Generic;
   using System.Linq;
   using System.Text;

   namespace ConsoleApplication1
   {
       class Program
       {
           static void Main(string[] args)
           {
               Console.WriteLine("Please enter a string: ");
BP>            String S = Console.ReadLine();
               Console.WriteLine(S);
           }
       }
   }

If no breakpoint is set, the application runs and exits without displaying a
console or asking for input.

If a breakpoint is set, it is hit and a console is opened but there is no text
prompt displayed and no input is taken.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to