Is is possible to create types dynamically in Windows Store apps (8 or 8.1)?
I'm trying to port a Silverlight application to Windows 8, but System.Reflection.Emit seems pretty scaled down compared to Silverlight and full .NET. Specifically, I'm missing types such as AssemblyBuilder, ModuleBuilder, TypeBuilder, FieldBuilder,
MethodBuilder , ILGenerator etc.
If these types are really not supported, is there some other way to build types dynamically in WinRT?
Thanks!