M
mafat mafat via .NET 247
I have installed the latest SDK 1.1 from Microsoft on my PCrunning Win2K OS. When I run the following program, it displaysthe MessageBox BUT DOES NOT show any text or anything on thebutton. I think it is supposed to dislay the text "Hello World!"and OK on the button.
Any help is greatly appreciated.
Here is the code:
/*
HelloWorld.cs - First c# program
Compilation: csc HelloWorld.cs
*/
using System;
using System.Windows.Forms;
public class HelloWorld
{
public static void Main()
{
//Print Hello World
MessageBox.Show("Hello World !");
}
}
Any help is greatly appreciated.
Here is the code:
/*
HelloWorld.cs - First c# program
Compilation: csc HelloWorld.cs
*/
using System;
using System.Windows.Forms;
public class HelloWorld
{
public static void Main()
{
//Print Hello World
MessageBox.Show("Hello World !");
}
}