2.調(diào)用pyd中的模塊 首先引用pythonnet: 1 usingPython.Runtime; 調(diào)用pyd的模塊: 1 2 3 4 5 6 7 8 9 //All calls to python should be inside a using (Py.GIL()) {/* Your code here */} block. using(Py.GIL()) { //Import python modules using dynamic mod = Py.Import("mod"), then...