I've got to develop a multi-language code generator in C#. Well actually the idea is, we have several in house application frameworks for database access in various languages (Java, Python, C++). But their basic working principle is same. And we feel that a code generator will help us to reduce our development time. So I have decided to write a code generator for the ease of our development.
What are the standard basic technical steps I should follow to generate classes from database tables?
Should I use \t
,\r
,\n
?
What are the techniques to achieve fastest speed?
I don't want to use RegEx.
Please let me know from your personal experience.