[源码]Python调用C# DLL例子(Python与.Net交互)

K8Cscan C# DLL例子代码html

namespace CscanDLL 
{  
    public class scan  
    {  
        public static string run(string ip)  
        {  
            if (string.IsNullOrEmpty(ip))  
                return "";  
            else  
                return ip;		
        }  
    }  
}

 

Python 调用C#  DLL代码python

import clr #pythonnet

print('python call K8Cscan c# dll')

clr.FindAssembly('netscan.dll')

clr.AddReference('netscan')

from CscanDLL import * 
print(scan.run('192.168.1.1'))

 

编译好的DLLgit

https://github.com/k8gege/K8CScan/blob/master/Example/DLL/c%23/netscan.dllgithub

实战参考: http://www.javashuo.com/article/p-shwptfxn-hy.htmlc#

相关文章
相关标签/搜索