Hi I'm building a small framework to help me build app quickly. I'm using Generics all sort of techniques that help me avoid to write boilerplate code repetitively.
I think it's a good idea, for my framework, to generate some code based on model objects, I know that JIT compilation is not available in MonoTouch but, I think it should be useful to generate code immediately before the compilation, using some templates.
Is there an utility that could help me to generate code before compilation in MonoTouch?
Anyone experimented this approach?