Alternatives to Reflection.Emit for the Compact Framework
.net, compact-framework, reflection, reflection.emit
Solution
What you need is Cecil (http://mono-project.com/Cecil), a Mono project library to generate and inspect programs and libraries in CIL format. It's actively maintained, does a lot more than Reflection.Emit and it's used in a lot of projects, including some that target .NET CF.
Problem
It seems that .NET CF is missing the very useful Reflection.Emit. So far, I found this library as an alternative: http://www.codeplex.com/EmitCF. However it seems to be an abandoned early version, so I'm looking for more options. Does anyone know of another alternative to Emit? Or perhaps someone used EmitCF and can comment on its status? BTW, the bigger picture: I'm trying to get Emit for the CF, so that I can get http://dynamic.codeplex.com to work under the CF, so I can optimize the serialization code I'm using (http://www.codeproject.com/KB/XML/GR_CustomXmlSerializer.aspx)