Hello,
I am trying to debug a simple hello world program
namespace TestProject
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
/// <summary>
/// Function to create Message Box with
/// with text "Hello World"
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnHelloWorld_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello World");
}
}
}
But I keep getting this error... "Program '[projectpath]' does not contain a static 'Main' method suitable for an entry point
does that mean I need int Main() somewhere???