Hello!
In sd4 i use code completion to create the method stub for an event handler.
e. g.
button.Click += new TAB TAB
the following stub is generated:
voidbutton_Click(object sender, EventArgs e)
{
throw new NotImplementedException();
}
This doesn't work in sd5 beta5 anymore.
What's the new way to create these stubs automatically?
Alex