Skip to content
Advertisement

Tag: ironpython

Interpret Python bytecode in C# (with fine control)

For a project idea of mine, I have the following need, which is quite precise: I would like to be able to execute Python code (pre-compiled before hand if necessary) on a per-bytecode-instruction basis. I also need to access what’s inside the Python VM (frame stack, data stacks, etc.). Ideally, I would also like to remove a lot of Python

Translating a for loop from c# to python (ironpython) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago. Improve this question I’m translating a chunk of code I have to use, from C# to Python. I’m not fluent in C#. How

Advertisement