So i am relearning C# and the .net framework again after a couple years of using other languages and i have a "best practice" question i hope someone can answer.
Looking at the below code for a new form entitled "Choose_File", i have been putting my "on load" code right after the
InitializeComponent();
line because for some reason i thought that was the "on load" method. After creating a couple forms using this method, i accidentally double clicked the header of the form and it opened the real "_Load" method where i am assuming i should have been putting the "on load" code all along. So my question is what is the actual real world difference between these two methods from a practical sense since both seem to work?
namespace Personal_Finance_Manager
{
public partial class Choose_File : Form
{
public Choose_File()
{
InitializeComponent();
}
private void Choose_File_Load(object sender, EventArgs e)
{
}
}
}