Boiler plate code replacement - is there anything bad about this code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T19:12:16Z http://stackoverflow.com/feeds/question/192980 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/192980/boiler-plate-code-replacement-is-there-anything-bad-about-this-code 5 Boiler plate code replacement - is there anything bad about this code? Benjol 2008-10-10T20:51:50Z 2009-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, () =&gt; 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#193012 0 Answer by eulerfx for Boiler plate code replacement - is there anything bad about this code? eulerfx 2008-10-10T21:04:12Z 2008-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#193038 6 Answer by broccliman for Boiler plate code replacement - is there anything bad about this code? broccliman 2008-10-10T21:12:14Z 2008-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>