Interface :- Alternative Approach - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T14:36:46Zhttp://stackoverflow.com/feeds/question/1615762http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1615762/interface-alternative-approach1Interface :- Alternative Approachudanameharhttp://stackoverflow.com/users/1955972009-10-23T20:38:49Z2009-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<IExpressWords> word = new List<IExpressWords>();
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#16157940Answer by Stan R. for Interface :- Alternative ApproachStan R.http://stackoverflow.com/users/1199292009-10-23T20:47:41Z2009-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<Action> word = new List<Action>();
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<SomeMethod> word = new List<SomeMethod>();
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#16158301Answer by Lee for Interface :- Alternative ApproachLeehttp://stackoverflow.com/users/1526022009-10-23T20:53:44Z2009-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 = () =>
{
foreach(string s in new[] { "Good", "Better", "Best" })
{
Console.WriteLine(s);
}
}
var groupTwo = () =>
{
foreach(string s in new[] { "one", "two", "three" })
{
Console.WriteLine(s);
}
}
List<Action> acts = new List<action> { 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 => typeof(IExpressWords).IsAssignableTo(t));
</code></pre>
http://stackoverflow.com/questions/1615762/interface-alternative-approach/1615853#16158530Answer by VirtualBlackFox for Interface :- Alternative ApproachVirtualBlackFoxhttp://stackoverflow.com/users/465942009-10-23T20:57:49Z2009-10-23T20:57:49Z<p>Regarding the reflection case here is a small example :</p>
<pre><code>static void WreakHavoc<T>(Action<T> 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<System.Collections.IEnumerable>((e) =>
{
foreach (var o in e)
{
Console.WriteLine(o);
}
});
}
</code></pre>