Iām writing a small compiler in C# and planning to generate IL instructions for .Net platform using System.Reflection.Emit. My question is, it is advisable to use System.Reflection.Emit for generating IL for production compilers.
If it is not advisable to use System.Reflection.Emit for generating IL for production compilers, do we have alternative libraries/tools for that purpose?