主要目标:为C#库创建一个包装器,可以在Python(2.6)中使用。
更新:现在,我对我使用的方法进行了更新,但是效果不佳。
简单C#类库的代码:
using System;
using System.Text;
using System.Runtime.InteropServices;
namespace Test
{
[Guid("8F38030D-52FA-4816-B587-A925FDD33302")]
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface _TestClass
{
[DispId(1)]
string Eureka();
}
[Guid("BC3F6BB3-42C4-4F30-869A-92EA45BF68D2")]
[ClassInterface(ClassInterfaceType.None)]
[ProgId("Test.TestClass")]
public class TestClass : _TestClass
{
public TestClass()
{
}
public string Eureka()
{
return "Hudson, we no longer have a problem!";
}
}
}
enter code here
除此之外,我进入了Project Properties并启用了设置:注册COM互操作。
另外,为了使类库可用于COM,我勾选了Signing - >签署大会,并给它一个强有力的钥匙。
此外,每当我编译时,我都会注销旧版本:
regasm -u Test /tlb:Test
我将其注册为:
regasm Test.dll / tlb:测试
我的问题是,在Python环境中,我有以下main.py,它不起作用:
import win32com.client
o = win32com.client.Dispatch("Test.TestClass")
错误是不可原谅的。
提前谢谢你!
答案 0 :(得分:2)
如果您使用Python for .NET,则可以选择其他方式。似乎有Windows CPython 2.6 and 2.7的alpha版本可用。你可以简单地运行:
import clr
clr.AddReference("Your.Assembly.Name")
import Test
test = Test.TestClass()
print test.Eureka()