标签: python.net
我注意到在c#中导入pythonnet中的python模块有两种不同的方法:
var testModule = PythonEngine.ImportModule("testModule");
和
using (Py.GIL()) { var testModule = Py.Import("testModule"); {
使用其中一个的原因是什么?