For example, I have the click event of a button calling the method below:
//Evento
this.serviçoToolStripMenuItem1.Click += new System.EventHandler(this.Nivel_Serv_Click);
//Metodo
private void Nivel_Serv_Click(object sender, EventArgs e) //tipo 3 serviço
{
//faz alguma coisa....
}
In another method, I performed the above method call:
Nivel_Serv_Click(null, null);
Is it right to do this? or would it be a gambiarra?