Interface :- Alternative Approach - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T14:36:46Z http://stackoverflow.com/feeds/question/1615762 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1615762/interface-alternative-approach 1 Interface :- Alternative Approach udanamehar http://stackoverflow.com/users/195597 2009-10-23T20:38:49Z 2009-10-23T20:58:34Z <p>I am beginner.Practicing in C# 3.0. The requirement is "i have to design model in such a way that ,it should iterate through all classes which implement particular interface (in this case <code>IExpressWords</code>) and execute the implemented method (<code>void ExpressWords()</code>)"</p> <p>I collected all classes in a List and iterated.</p> <pre><code>namespace InterfaceExample { public interface IExpressWords { void ExpressWords(); } class GroupOne:IExpressWords { string[] str = { "Good", "Better", "Best" }; public void ExpressWords() { foreach (string s in str) { Console.WriteLine(s); } } } class GroupTwo:IExpressWords { string[] str = { "one", "two", "three" }; public void ExpressWords() { foreach (string s in str) { Console.WriteLine(s); } } } class Test { static void Main() { List&lt;IExpressWords&gt; word = new List&lt;IExpressWords&gt;(); word.Add(new GroupOne()); word.Add(new GroupTwo()); foreach (IExpressWords Exp in word) { Exp.ExpressWords(); } Console.ReadKey(true); } } } </code></pre> <p><strong>Questions :</strong></p> <ol> <li>What is the name of this pattern ? ( chain-of-responsibility? )</li> <li>How can i achieve it using delegates ( I am not strong in delegates).</li> <li>How can i find out all classes that implement the interface and execute the method using reflection ?(Curious to know ,how to tackle it using reflection).</li> </ol> <p>(If i am not so clear in description,kindly let me know).</p> <p><strong>Thanks all for the pouring perennial responses.</strong></p> http://stackoverflow.com/questions/1615762/interface-alternative-approach/1615794#1615794 0 Answer by Stan R. for Interface :- Alternative Approach Stan R. http://stackoverflow.com/users/119929 2009-10-23T20:47:41Z 2009-10-23T20:52:53Z <p>you can use Action class to achieve this using delegates if you like </p> <pre><code>class Test { static void Main() { List&lt;Action&gt; word = new List&lt;Action&gt;(); word.Add(new GroupOne().ExpressWords()); word.Add(new GroupTwo().ExpressWords()); foreach (Action del in word) { del(); } Console.ReadKey(true); } } </code></pre> <p>if you want to use Delegates then you have to declare a Delegate type</p> <pre><code>delegate void SomeMethod(); class Test { static void Main() { List&lt;SomeMethod&gt; word = new List&lt;SomeMethod&gt;(); word.Add(new GroupOne().ExpressWords()); word.Add(new GroupTwo().ExpressWords()); foreach (SomeMethod del in word) { del(); } Console.ReadKey(true); } } </code></pre> http://stackoverflow.com/questions/1615762/interface-alternative-approach/1615830#1615830 1 Answer by Lee for Interface :- Alternative Approach Lee http://stackoverflow.com/users/152602 2009-10-23T20:53:44Z 2009-10-23T20:53:44Z <p>1) It's the <a href="http://en.wikipedia.org/wiki/Strategy%5Fpattern" rel="nofollow">strategy pattern</a></p> <p>2) Since the IExpressWords interface only contains a single method, it is effectively a wrapper around a method, which is what delegates are for. The equivalent delegate type is <a href="http://msdn.microsoft.com/en-us/library/system.action.aspx" rel="nofollow">Action</a>. So your code would then become:</p> <pre><code>var groupOne = () =&gt; { foreach(string s in new[] { "Good", "Better", "Best" }) { Console.WriteLine(s); } } var groupTwo = () =&gt; { foreach(string s in new[] { "one", "two", "three" }) { Console.WriteLine(s); } } List&lt;Action&gt; acts = new List&lt;action&gt; { groupOne, groupTwo }; foreach(var a in acts) { a(); } </code></pre> <p>3) To find all the types that implement an interface in the current assembly you can do this:</p> <pre><code>a = Assembly.GetExecutingAssembly(); var implementingTypes = a.GetTypes().Where(t =&gt; typeof(IExpressWords).IsAssignableTo(t)); </code></pre> http://stackoverflow.com/questions/1615762/interface-alternative-approach/1615853#1615853 0 Answer by VirtualBlackFox for Interface :- Alternative Approach VirtualBlackFox http://stackoverflow.com/users/46594 2009-10-23T20:57:49Z 2009-10-23T20:57:49Z <p>Regarding the reflection case here is a small example :</p> <pre><code>static void WreakHavoc&lt;T&gt;(Action&lt;T&gt; havok) { var assemblies = AppDomain.CurrentDomain.GetAssemblies(); var implementing = from assembly in assemblies from type in assembly.GetTypes() let interfaceType = typeof(T) where interfaceType.IsAssignableFrom(type) select type; foreach(var type in implementing) { var ctor = type.GetConstructor(Type.EmptyTypes); if (ctor == null) continue; var instance = (T)ctor.Invoke(new object[0]); havok(instance); } } static void Main() { WreakHavoc&lt;System.Collections.IEnumerable&gt;((e) =&gt; { foreach (var o in e) { Console.WriteLine(o); } }); } </code></pre>