Boiler plate code replacement - is there anything bad about this code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T19:12:16Zhttp://stackoverflow.com/feeds/question/192980http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192980/boiler-plate-code-replacement-is-there-anything-bad-about-this-code5Boiler plate code replacement - is there anything bad about this code?Benjol2008-10-10T20:51:50Z2009-01-23T13:24:38Z
<p>I've recently created these two (unrelated) methods to replace lots of boiler-plate code in my winforms application. As far as I can tell, they work ok, but I need some reassurance/advice on whether there are some problems I might be missing.</p>
<p>(from memory)</p>
<pre><code>static class SafeInvoker
{
//Utility to avoid boiler-plate InvokeRequired code
//Usage: SafeInvoker.Invoke(myCtrl, () => myCtrl.Enabled = false);
public static void Invoke(Control ctrl, Action cmd)
{
if (ctrl.InvokeRequired)
ctrl.Invoke(new MethodInvoker(cmd));
else
cmd();
}
//Replaces OnMyEventRaised boiler-plate code
//Usage: SafeInvoker.RaiseEvent(this, MyEventRaised)
public static void RaiseEvent(object sender, EventHandler evnt)
{
var handler = evnt;
if (handler != null)
handler(sender, EventArgs.Empty);
}
}
</code></pre>
<p>EDIT: See related question <a href="http://stackoverflow.com/questions/258409/how-to-get-information-about-an-exception-raised-by-the-target-of-controlinvoke">here</a></p>
http://stackoverflow.com/questions/192980/boiler-plate-code-replacement-is-there-anything-bad-about-this-code/193012#1930120Answer by eulerfx for Boiler plate code replacement - is there anything bad about this code?eulerfx2008-10-10T21:04:12Z2008-10-10T21:04:12Z<p>Similar patterns have worked for me with no problems. I am not sure why you are wrapping Action in MethodInvoker though.</p>
http://stackoverflow.com/questions/192980/boiler-plate-code-replacement-is-there-anything-bad-about-this-code/193038#1930386Answer by broccliman for Boiler plate code replacement - is there anything bad about this code?broccliman2008-10-10T21:12:14Z2008-10-10T21:12:14Z<p>This is good stuff. Make them extension methods though to clean up your code a little more. For example:</p>
<pre><code>//Replaces OnMyEventRaised boiler-plate code
//Usage: SafeInvoker.RaiseEvent(this, MyEventRaised)
public static void Raise(this EventHandler eventToRaise, object sender)
{
EventHandler eventHandler = eventToRaise;
if (eventHandler != null)
eventHandler(sender, EventArgs.Empty);
}
</code></pre>
<p>Now on your events you can call: myEvent.Raise(this);</p>