I have a cplex code that works in cplex ide. I want to run that program inside c# code.
I added cplex libraries, but visual studio cannot understand it.
using ILOG.CPLEX;
using ILOG.Concert;
but these are red underlined. How can I connect cplex library to c# code? I want to run cplex code like a function, I mean:
int cost = run_cplex_output();