I've programmed .NET and C# for years now, but have only recently encountered the DynamicMethod type along with the concept of a Dynamic Assembly within the context of reflection. They seem to always be used within IL (runtime code) generation.

Unfortunately MSDN does an extraordinarily poor job of defining what a dynamic assembly/method actuallty is and also what they should be used for. Could anyoen enlighten me here please? Are there anything to do with the DLR? How are they different to static (normal) generation of assemblies and methods at runtime? What should I know about how and when to use them?

link|improve this question

There is no type named "DynamicAssembly" in the framework. Are you talking about AssemblyBuilder? The MSDN Reflection.Emit tutorial is here: msdn.microsoft.com/en-us/library/3y322t50.aspx – Hans Passant Dec 21 '11 at 16:11
@Dan Rigby: Cheers. – Noldorin Dec 21 '11 at 16:20
@HansPassant: Okay, maybe no type, but definitely a concept: msdn.microsoft.com/en-us/library/4xtysk39.aspx – Noldorin Dec 21 '11 at 16:21
Anyone....? :-) – Noldorin Dec 22 '11 at 10:54
feedback

1 Answer

up vote 3 down vote accepted

DynamicMethod are used to create methods without any new assembly. They also can be created for a class, so you can access it's private members. Finally, the DynamicMethod class will build a delegate you can use to execute the method. For example, in order to access a private field:

var d = new DynamicMethod("my_dynamic_get_" + field.Name, typeof(object), new[] { typeof(object) }, type, true);
var il = d.GetILGenerator();
il.Emit(OpCodes.Ldarg_0);
il.Emit(OpCodes.Ldfld, field);
if (field.FieldType.IsValueType)
    il.Emit(OpCodes.Box, field.FieldType);
else
    il.Emit(OpCodes.Castclass, typeof(object));

il.Emit(OpCodes.Ret);
var @delegate = (Func<object, object>)d.CreateDelegate(typeof(Func<object, object>));

Hope it helps.

link|improve this answer
And it has nothing to do with DLR. It's a method created on the fly. – ivowiblo Dec 22 '11 at 23:33
Ah, I see. That clears it up a good bit, so thanks for that. Is there any equivalent in a dynamic type or such? Or what about assembly? I thought I could always create assemblies on the fly in the past, and I don't remember the word "dynamic" coming into it really. – Noldorin Dec 23 '11 at 0:21
For types and assemblies, it's just a naming. DynamicMethod is an actual class. – ivowiblo Dec 23 '11 at 5:04
Oh, so one would create a 'dynamic' assembly/type just as one would normally in .NET? The same thing goes on behind the scenes? – Noldorin Dec 23 '11 at 9:45
Yeah, using AssempblyBuilder and all that jazz. As you create them on the fly, they call them "dynamic". – ivowiblo Dec 23 '11 at 15:53
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.