So after looking at an article describing how to Create Object Instances Faster Than Reflection I got really excited since in my code I currently have quite a bit of reflection. Unfortunately DynamicMethod
and ILGenerator
are not supported in Windows CE. EDIT: Activator
is supported in Windows CE
I was wondering if anyone knew of any way to create object instances faster than reflection in CE. If not, maybe someone could explain why Windows CE does not support this feature and if there are any work arounds to get this feature in CE. Even if I had to code my own DynamicMethod
and ILGenerator
classes it might be worth it :)