How to do dynamic object creation and method invocation in .NET 3.5 - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:40:42Zhttp://stackoverflow.com/feeds/question/483215http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/483215/how-to-do-dynamic-object-creation-and-method-invocation-in-net-3-52How to do dynamic object creation and method invocation in .NET 3.5thr2009-01-27T12:26:44Z2009-01-27T17:30:47Z
<p>How does the code looks that would create an object of class:</p>
<pre><code>string myClass = "MyClass";
</code></pre>
<p>Of the above type, and then call</p>
<pre><code>string myMethod = "MyMethod";
</code></pre>
<p>On that object?</p>
http://stackoverflow.com/questions/483215/how-to-do-dynamic-object-creation-and-method-invocation-in-net-3-5/483231#4832316Answer by Jon Skeet for How to do dynamic object creation and method invocation in .NET 3.5Jon Skeet2009-01-27T12:31:54Z2009-01-27T12:31:54Z<ul>
<li>Use <a href="http://msdn.microsoft.com/en-us/library/system.type.gettype.aspx" rel="nofollow"><code>Type.GetType(string)</code></a> to get the type object.</li>
<li>Use <a href="http://msdn.microsoft.com/en-us/library/system.activator.createinstance.aspx" rel="nofollow"><code>Activator.CreateInstance(Type)</code></a> to create an instance.</li>
<li>Use <a href="http://msdn.microsoft.com/en-us/library/system.type.getmethod.aspx" rel="nofollow"><code>Type.GetMethod(string)</code></a> to retrieve a method.</li>
<li>Use <a href="http://msdn.microsoft.com/en-us/library/system.reflection.methodbase.invoke.aspx" rel="nofollow"><code>MethodBase.Invoke(object, object[])</code></a> to invoke the method on the object</li>
</ul>
<p>Example, but with no error checking:</p>
<pre><code>using System;
using System.Reflection;
namespace Foo
{
class Test
{
static void Main()
{
Type type = Type.GetType("Foo.MyClass");
object instance = Activator.CreateInstance(type);
MethodInfo method = type.GetMethod("MyMethod");
method.Invoke(instance, null);
}
}
class MyClass
{
public void MyMethod()
{
Console.WriteLine("In MyClass.MyMethod");
}
}
}
</code></pre>
<p>Each step needs careful checking - you may not find the type, it may not have a parameterless constructor, you may not find the method, you may invoke it with the wrong argument types.</p>
<p>One thing to note: Type.GetType(string) needs the assembly-qualified name of the type unless it's in the currently executing assembly or mscorlib.</p>
http://stackoverflow.com/questions/483215/how-to-do-dynamic-object-creation-and-method-invocation-in-net-3-5/483232#4832322Answer by tvanfosson for How to do dynamic object creation and method invocation in .NET 3.5tvanfosson2009-01-27T12:32:03Z2009-01-27T12:32:03Z<p>The following assumes an object with a public constructor and a public method that returns some value but takes no parameters.</p>
<pre><code>var object = Activator.CreateInstance( "MyClass" );
var result = object.GetType().GetMethod( "MyMethod" ).Invoke( object, null );
</code></pre>
http://stackoverflow.com/questions/483215/how-to-do-dynamic-object-creation-and-method-invocation-in-net-3-5/483240#4832400Answer by Serhat Özgel for How to do dynamic object creation and method invocation in .NET 3.5Serhat Özgel2009-01-27T12:34:40Z2009-01-27T12:34:40Z<p>Assuming that your class is in your executing assembly, your constructor and your method is parameterless.</p>
<pre><code>Type clazz = System.Reflection.Assembly.GetExecutingAssembly().GetType("MyClass");
System.Reflection.ConstructorInfo ci = clazz.GetConstructor(new Type[] { });
object instance = ci.Invoke(null); /* Send parameters instead of null here */
System.Reflection.MethodInfo mi = clazz.GetMethod("MyMethod");
mi.Invoke(instance, null); /* Send parameters instead of null here */
</code></pre>
http://stackoverflow.com/questions/483215/how-to-do-dynamic-object-creation-and-method-invocation-in-net-3-5/484365#4843652Answer by Ricky AH for How to do dynamic object creation and method invocation in .NET 3.5Ricky AH2009-01-27T17:30:47Z2009-01-27T17:30:47Z<p>I've created a library which simplifies dynamic object creation and invocation using .NET you can download the library and the code in google code: <a href="http://code.google.com/p/latebindinghelper/" rel="nofollow">Late Binding Helper</a>
In the project you will find a <a href="http://code.google.com/p/latebindinghelper/wiki/Usage" rel="nofollow">Wiki page with the usage</a>, or you can also check this <a href="http://www.codeproject.com/KB/cs/LateBindingHelper.aspx" rel="nofollow">article in CodeProject</a></p>
<p>Using my library, your example will look like this:</p>
<pre><code>IOperationInvoker myClass = BindingFactory.CreateObjectBinding("MyClassAssembly", "MyClass");
myClass.Method("MyMethod").Invoke();
</code></pre>
<p>Or even shorter:</p>
<pre><code>BindingFactory.CreateObjectBinding("MyClassAssembly", "MyClass")
.Method("MyMethod")
.Invoke();
</code></pre>
<p>It uses a fluent interface, and truly simplifies this kind of operations. I hope you could find it useful.</p>