C# Form Load and Methods

Mar 31 2010 10:36 PM
In C# I created a small form and a private method now when you double click on the form you get

private void Form1_Load(object sender, EventArgs e)

in that event handler is it okay to call my private method like so,

private void Form1_Load(object sender, EventArgs e)
{
//myMethod();

}

Attachment: Shopping List.zip

Answers (6)