Tagged Questions

4
votes
1answer
54 views

Is it possible to invoke internal method from a dynamic method in .NET?

Dear ladies and sirs. I am trying to invoke an internal method from a dynamically generated one. The il code is simple: ldarg_0, callvirt, ret. Executing the method fails with Ty …
1
vote
1answer
9 views

Explicit interface implementation and Reflection.Emit

Does anybody know how to implement an interface's property explicitly using Reflection.Emit?
0
votes
2answers
74 views

Using Reflection.Emit to create a class implementing an interface

I need to generate a class using Reflection.Emit that implements the following interface. public interface IObject { T Get<T>(string propertyName); } Does anyone have …
0
votes
2answers
170 views

Why does getting the mocked instance created with Moq throw a System.BadImageFormatException?

This question may be related to another question and it certainly results with a System.BadImageFormatException. Maybe it's the same thing but exposed differently? I have the foll …
17
votes
4answers
207 views

Curiosity: Why does Expression<…> when compiled run faster than a minimal DynamicMethod?

I'm currently doing some last-measure optimizations, mostly for fun and learning, and discovered something that left me with a couple of questions. First, the questions: When I …
0
votes
2answers
55 views

Linking a .NET Expression Tree into a new assembly

I'm trying to write my own toy My Toy Language -> MSIL compiler in order to get a better understanding of how compilers work. I got the parsing and lexing working, I have built the …
2
votes
2answers
34 views

Are there tools to ease the work with Reflection.Emit?

I need to dynamically generate some types. The generated type has several methods, constructors, implements an interface and defines the static constructor. Is there a tool that ca …
1
vote
1answer
41 views

Creating a dynamic enum and attempting to reference it fail with BindingFailure

I need to create a dynamic enum and then be able to get the type using Type.GetType(). Is this possible? The below code will create a dynamic enum, and attempt to use it's qualify …
0
votes
3answers
219 views

Generate dynamic method to set a field of a struct instead of using reflection

Let's say I have the following code which update a field of a struct using reflection. Since the struct instance is copied into the DynamicUpdate method, it needs to be boxed to a …
0
votes
1answer
64 views

System.CodeDom.CodeCompileUnit from System.Reflection.Emit.AssemblyBuilder instance

I'm looking at CodePlex code for TLBImp2 and want to generate C# source code from the IL emitted. Is there a way to get a System.CodeDom.CodeCompileUnit from a System.Reflection.E …
0
votes
0answers
29 views

Is it possible to skip visibility checks when generating dynamic IL with MethodBuilder’s?

When generating IL using DynamicMethod it's possible to call methods and access fields that would be otherwise un-accessible if you provide 'true' for the restrictedSkipVisibility …
3
votes
2answers
101 views

Is it possible to emit a type deriving from a generic type while specifying itself as the generic type parameter?

Dear ladies and sirs. Imagine the following perfectly legal type hierarchy: class A<T> where T : A<T> { } class B : A<B> { public B():base(){} } My questio …
0
votes
1answer
57 views

Is it possible to reflect a running .NET process?

Dear ladies and sirs. I have an application with dynamic types emitted at run-time. In order to inspect the generated .NET code, we save the dynamically generated assemblies and …
0
votes
1answer
29 views

PEVerify Warning Parameter out of Sequence

I've built an assembly using Reflection.Emit. Running PEVerify returns 214 warnings of the same type: [MD]: Warning: Parameter out of sequence (parameter: 1; seq.num: 1). [token:0 …
0
votes
1answer
130 views

Reflection.Emit Generic Base Class Generic Method Call

I'm dynamically sub classing a generic type (filling it's contract) that has a generic method. I attempt to call this generic method but the assembly I produce has errors. Reflecto …

1 2 3 next
15 30 50 per page