Debug Iron Python from c# using Visual Studio

南笙酒味 提交于 2019-12-13 00:30:08

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!