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

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


           Summary: Console.Writeline() fails when debugging, succeeds
                    when running remotely.
    Classification: Mono
           Product: Mono: Tools
           Version: unspecified
          Platform: x86-64
        OS/Version: SLES 11
            Status: NEW
          Severity: Normal
          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 ASP.NET app made from a template in Visual Studio.

If I run this app remotely, the Console.Writeline() output is sent to the
console or log viewer correctly.  However, nothing shows up in either place
when debugging remotely.  Seems the console output is lost somewhere when
debugging.

Default.aspx.cs:
================

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Runtime.InteropServices;

namespace WebApplication1
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            String E = "Howdy";
            Console.WriteLine(E);
        }
    }
}

-- 
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