### Environment - Pythonnet version: 2.3 - Python version: Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] - Operating System: win7 x64 ### Details - Same name functions , the pythonnet donl't found right function. **error info** ```python Traceback (most recent call last): File "testdll.py", line 111, in <module> ret = _Interpreter.csc(1, filename, paramlist, errMsg) TypeError: No method matches given arguments ``` **mycode** ```c# public int csc(int type, string filename, strtParam[] paramArray, ref string strErr) public int csc(string filename, strtParam[] paramArray, ref string strErr) ``` - Modify code ,use different function name just successed. **midify code** ```c# public int cscPT(int type, string filename, strtParam[] paramArray, ref string strErr) { return csc(type, filename, paramArray, ref strErr); } ```