I keep getting an error on this code. My compiler seems not to like the using System.Windows.Forms. Why?
using System;
using System.Windows.Forms;
public class DebugNineOne
{
public static void Main()
{
string caption = "Famous quote";
MessageBox.show(caption,"To be...");
caption += " continued";
MessageBox.show("or not to be...", caption);
MessageBox.display("That is the question", caption);
}
}
2006-12-17
13:07:04
·
2 answers
·
asked by
Christina
2
in
Computers & Internet
➔ Programming & Design
This is a C# code not Java
2006-12-17
13:38:02 ·
update #1