S
Steve Austin
Is this absolutely necessary to avoid memory leaks? If so, would:
using( MyForm form = new MyForm() )
{
form.ShowDialog();
}
be acceptable?
Steve
using( MyForm form = new MyForm() )
{
form.ShowDialog();
}
be acceptable?
Steve