Python and .NET integration

前端 未结 3 2112
無奈伤痛
無奈伤痛 2021-02-15 18:23

I\'m currently looking at python because I really like the text parsing capabilities and the nltk library, but traditionally I am a .Net/C# programmer. I don\'t think IronPytho

3条回答
  •  迷失自我
    2021-02-15 19:05

    I don't know why you have a problem with IronPython. you can still use any and all nltk calls there.

    To answer your question about porting a Python class into C#: try compiling your python code into an EXE. This creates a DLL with all your python classes in it. This is something that has been around for a while and it has worked like a charm for me in the past

提交回复
热议问题