|
||||||
| C# Programming C# (pronounced C-sharp) is a new object oriented language from Microsoft and is derived from C and C++. It also borrows a lot of concepts from Java too including garbage collection. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
I just created a program real quick that does what you ask:
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace debugTest
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
String _Mon = "TEST";
System.Diagnostics.Debug.WriteLine(_Mon);
}
}
}
Quote:
|
|
|||
|
Quote:
Of course, a Debug.WriteLine like you have will work as well. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Debug Mode | dirkfirst | Managed C++ | 4 | 10-09-2007 08:11 PM |
| New window with custom content - JS | domestic | JavaScript and CSS | 10 | 06-04-2007 02:08 AM |
| ! Need urgent help ! Drawing program using cygwin | siren | C and C++ | 0 | 05-26-2007 10:51 PM |
| Java:Tutorial - Making A Window | John | Java Tutorials | 0 | 01-11-2007 02:02 PM |
| Java:Tutorial - The Variable | John | Java Tutorials | 0 | 12-09-2006 09:59 AM |
Goal: 100,000 Posts
Complete: 68%