一、用C#编写一个COM组件
1. 打开Visual Studio2008,[文件]->[新建]->[项目]
2. 项目类型=Visual C#,模版=类库,名称=MyCom,解决方案=MyCom,点击[确定]
3. 编辑Main.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MyCom { public interface MyInterface { int add(int a, int b); string sayHello(string msg); string mergeString(string a, string b); } public class MyClass : MyInterface { public int add(int a, int b) { return a + b; } public string sayHello(string msg) { return "Hello, " + msg; } public string mergeString(string a, string b) { return a + b; } } }
4. 编辑AssemblyInfo.cs文件
将assembly:ComVisible(false)改为true
// 将 ComVisible 设置为 false 使此程序集中的类型 // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型, // 则将该类型上的 ComVisible 属性设置为 true。 [assembly: ComVisible(true)]
在[应用程序]选项卡中点击[程序集信息…]
勾上[使程序集COM可见],然后点击[确定]
在[生成]选项卡上勾上[为COM互操作注册]
在[签名]选项卡中勾上[为程序集签名],选择下拉框中的<新建…>
秘钥文件名称=MyCom,去掉[使用密码保护密钥文件]的勾,点击[确定],最后保存
6. 生成Dll,tld文件,选择菜单栏上的[生成]->[生成MyCom],进入项目的根目录下的binDebug目录会发现MyCom.dll, MyCom.pdb, MyCom.tlb文件已经生成
7. 注册MyCom.dll文件,进入SDK命令行,CD到MyCom工程的根目录下的binDebug目录
然后运行regasm MyCom.dll /tlb:MyCom.tlb命令
下面用regedit命令进入注册表,查看HKEY_CLASSES_ROOT下的MyCom.MyClass已经存在了,则说明已经完成注册。
再继续运行gacutil –i MyCom.dll将程序集添加到缓存中
到此为止MyCom这个COM组件的开发已经完成了。