Question

While doing a breaf research on IronPython I got confused about it's execution model and how it integrates with C#.

Can you please point, which of these assumptions are wrong:

  1. IronPython is Not compiled Ahead of time ( into a clr exe|dll with IL code)
  2. IronPython is distributed as script
  3. When executed, IronPython files are compiled at runtime into IL and then executed in a CLR AppDomain.

Thanks

Was it helpful?

Solution

You can use pyc.py to create an exe/dll, but it's not well documented. Otherwise, you're basically right.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top