I'm a student, I'm studying how to analytics and using parameters of the function from file.txt
File.txt content example:
int Add(int a, int b) { return a+b; }
Return_Value = "int"
Parameter = "int a, int b"
But I do not know how to use the parameters to call function with String.
How can this be achieved?