my goal is to generate an h file (or anything else that fulfils my requirement) for a c++ application via c#.
in my c# application I have a list of custom items. each item contains:
1) Name property
2) Type property (i.e. int, string)
3) Value property
In the end the c++ application needs to create/implement the variables according to 1 and 2.
then, the user assigns values to those variables and the application needs to check whether the values are equal to 3 or not.
any ideas on what would be the best method and how to do it?
Thanks!
I’ve managed to create an h file which implements 1 and 2 as described above.