hi, this it's a really little problem but
when i use vs 2005 to autogenerate eventhandler for example for a button click, it give to the new method a name as
button1_click(object sender, EventArgs e) {....}
but the logic (and maybe also the c# code style standard) tells that it's name must be something as
button1_clicked(object sender, EventArgs e) {....}
somebody knows if i can set this convenction in vs options?
thanks.