Do you have an VS extension supporting python?

0
0

Dear Team,

Do you have an VS extension supporting python?

Kind regards!

  • You must to post comments
0
0

We do not have a VS extension supporting Python.

However, Wisej supports all .NET languages, which includes Python, so you can code your Wisej application in Python if you want. The designer only supports C# and VB.NET (technically we have a version for COBOL and F# as well)- so you won’t be able to use the designer if you code your application in Python.

You would need to use IronPython which uses managed code. IronPython generates IL code, which the .NET runtime translates to native code and then executes. https://ironpython.net/

Another option would be to use an interop like Python.NET, which allows you to call Python code from C# and C# code from Python: https://pythonnet.github.io/

For more information on managed code (IronPython) vs interop (Python.NET), read this: https://learn.microsoft.com/en-us/dotnet/standard/managed-code

-Julie

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.