问题
I am calling iron python from c# by creating Python enginer and executing the script from a file.
Dictionary<string, object> options = new Dictionary<string, object>();
options["Debug"] = true;
m_engine = Python.CreateEngine(options);
I have set the options Debug to true in the engine.Here the breakpoints are working,but I am unable to see the values of the variables in watch
Can anyone give solution for this?
来源:https://stackoverflow.com/questions/29300175/debug-iron-python-from-c-sharp-using-visual-studio