创建C#DLL

时间:2014-06-23 06:52:51   收藏:0   阅读:245

1. 创建classlibrary

2.编写一个COM接口和一个COM类

  [Guid("DBE0E8C4-1C61-41f3-B6A4-4E2F353D3D05")]        

public interface IManagedInterface       

  {             int PrintHi(string name);         }

  

      [Guid("C6659361-1625-4746-931C-36014B146679")]        

public class InterfaceImplementation : IManagedInterface    

     {             public int PrintHi(string name)             {                 Console.WriteLine("Hello, {0}!", name);                 return 33;             }         }

 

3.在PROJECT上点击右键,选择属性---》bulid,选择registry from com interep.

 

4.一定要以管理员的方式运行 VS

 

5.在BIN里面有dll。可以不用 CSC 那种命令行了,happy.

创建C#DLL,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!