Hi,
I have a problem in this i have to execute a COBOL code in c#.net. in this COBOL code code in string format. So i just need to execute the code get the result by passing the cobol code.
suppose we have a if condition cobol code
EVALUATE TRUE
WHEN 15 > 13
MOVE ZEROS TO TEST-ADD-STATUS
WHEN OTHER
MOVE TEST-LOGO-RPT TO TEST-ADD-STATUS
END-EVALUATE
Now i want to execute this code in C#. This code generated at run time bu my system. So i need code to generic method to execute the COBOL code.
Go to the complete details ...