码迷,mamicode.com
首页 > 其他好文 > 详细

C#编写COM组件

时间:2014-05-26 23:12:43      阅读:528      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   code   http   ext   

1、新建一个类库项目 
bubuko.com,布布扣 

2、将Class1.cs改为我们想要的名字 
bubuko.com,布布扣 
问是否同时给类改名,确定 
bubuko.com,布布扣 

3、修改Properties目录下面的AssemblyInfo.cs 
ComVisible属性设置为True 
bubuko.com,布布扣 

4、项目菜单->MyLib属性 
找到“生成”选项卡 
bubuko.com,布布扣 
往下看,找到“为 COM Interop 注册”勾上 
bubuko.com,布布扣 

5、继续往下,找到“签名”选项卡 
  勾上“为程序集签名” 
  在下面的下拉框里面选择“ <新建...>” 
bubuko.com,布布扣 

6、在弹出的对话框里面,输入MyLib。。或者随便取个名字 
  去掉使用密码保护文件的选项 
bubuko.com,布布扣 

7、开始编码,任何一个公开的类,必须有一个 I开通的接口定义 

C# code
using System;using System.Collections.Generic;using System.Text; using System.Runtime.InteropServices; namespace MyLib {      [ComVisible(true)]      [Guid("2CBD3D76-35F1-4f9d-9C1B-9DBFEE412F76")]     publicinterface IMyClass     {         void Initialize();         void Dispose();         int Add(int x, int y);      }      [ComVisible(true)]      [Guid("EA2F140A-108F-47ae-BBD5-83EEE646CC0D")]      [ProgId("MyLib.MyClass")]     publicclass MyClass : IMyClass     {         publicvoid Initialize()         {             //nothing todo        }         publicvoid Dispose()         {             //nothing todo        }         publicint Add(int x, int y)          {             return x + y;          }     } }



8、GUID属性里面的那个字符串,在“工具”菜单下面,“创建 GUID” 
  选择 Registry Format,然后复制 
  bubuko.com,布布扣 

  注意在[Guid("....... 这个里面要去掉GUID前后的花括号 

9、编译它 
在命令提示符下面,进入Dll所在的目录 
用 gacutil /i MyLib.dll 将这个DLL加入的全局缓存里 
然后用 regasm MyLib.dll 注册这个dll 
bubuko.com,布布扣 

10、在VBScript里面试试。。。 

HTML code
<script language="VBScript">
Dim o : Set o=CreateObject("MyLib.MyClass")
  
  o.Initialize     MsgBox"1 + 2 = "& o.Add(1,2)      o.Dispose     Set o=Nothing</script>

C#编写COM组件,布布扣,bubuko.com

C#编写COM组件

标签:style   c   class   code   http   ext   

原文地址:http://www.cnblogs.com/wlzhang/p/3745091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!