Emulate IDispatchEx in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T00:07:10Zhttp://stackoverflow.com/feeds/question/307390http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307390/emulate-idispatchex-in-c0Emulate IDispatchEx in C#Vyas Bharghava2008-11-21T00:22:04Z2008-12-23T21:05:02Z
<p>C# 3.0 Extension methods add extensions to the base Type making calling that method on all <em>instances</em> of that Type legal.</p>
<p>Now, JavaScript I know implements IDispatchEx through which it's possible to add methods to a specific instance.</p>
<p>So how do I add a set of methods to an 'instance' of a C# class? I know this is a Dynamic vs. Static Languages holy war territory. :) Let me clarify my intention is NOT that.</p>
<p>I just want to be able to add a set of events to an interface depending on the class implementing that interface.</p>
<p>I was able to do that using Generics </p>
<p><code></p>
<pre><code>inteface ISample<T> { T SupportedEvents; }
class Sample : ISample<UIWidgetEvent> { }
class Sample2 : ISample<NonVisualUIWidget> { }
class UIWidgetEvent { public EventHandler Clicked; }
class NonVisualUIWidget {public EventHandler Expired;}
class TestSample
{
public void Test()
{
new Sample().SupportedEvents.Clicked += ...
new Sample2().SupportedEvents.Expired += ...
}
}
</code></pre>
<p></code></p>
<p>Then I didn't like "SupportedEvents"... I want to be able to say </p>
<p><code></p>
<pre><code>new Sample().Clicked +=...
</code></pre>
<p></code></p>
<p>Then I thought JavaScript (I know C# is not JS :))... AND IDispatchEx, IL Weaving, Reflection.Emit etc. etc. and thought may be there's a way to do this... [Design time support would be nice but I can live without]</p>
<p>Yes, I probably could do this "instance augmentation" with a Visitor pattern.
[Not sure if I could get the syntatic sugar though]</p>
<p>Comments?</p>
http://stackoverflow.com/questions/307390/emulate-idispatchex-in-c/390076#3900762Answer by JerKimball for Emulate IDispatchEx in C#JerKimball2008-12-23T21:05:03Z2008-12-23T21:05:03Z<p>Well, you could create a DynamicMethod instance for your "new" methods, but statically attaching them to an existing instance at runtime wouldn't work due to the fact it plain wouldn't compile. </p>
<p>You <em>might</em> (I haven't tried this) be able to emit the opcodes into an in-memory assembly, but that's about as far away from being "Syntactically sweet" as you can get (would involve a lot of reflection and InvokeMember calls, I would think)</p>
<p>It also might be worth looking into Extension Methods - although I've never tried attaching events or event-like methods via extension methods...and they are 3.5 only, so that may limit you.</p>
<p>The nicest looking, "pure C#" implementation is probably something very similar to what you've already got with the generic/interface setup...</p>
<p>Honestly, if you're looking for something with true "dynamic support" like this, I'd do this kind of stuff in a DLR-capable language (like IronPython) and call into it from your C# stuff.</p>