我在c#里写了一个ClassLibrary1类库, 声明一个接口,再实现该接口。
在程序集信息里已经勾选了使COM可见。
然后对此编译成功的DLL【beep_Class.dll】进行处理,打开vs2005自带的命令行工具。输入 tlbexp beep_Class.dll
问题:1,vs2005自带的命令行工具是视图中的 命令窗口?
......
研发产品为医疗软件
岗位要求:
* 计算机相关专业,本科以上学历
* 具有四年以上DELPHI/C#开发经验,有良好的技术功底和编程技巧,具有组件开发能力
* 熟悉C/S架构下的应用开发并有实际的项目开发经验
* 熟悉SQLServer/oracle等数据库和ADO等数据库操作。
* 对新技术有较强的学习和领悟能力,团队合作精神 ......
delphi中如何调用C#写的dll中的类,
还是把代码贴出来吧
可以调用标准dll,c#类型的dll不行
这是C#写的dll
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Dlltest
{
public class DllClass
{
  ......
这是C#写的dll
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Dlltest
{
public class DllClass
{
public int add(int a, int b)
......
这是C#写的dll
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Dlltest
{
public class DllClass
{
public int add(int a, int b)
......
我创建一个Active Form 叫 TestOCX ,在可口中定义了方法 HHUU,返回类型是BSTR,没有参数
实现如下:
Delphi(Pascal) code:
function TTestOCX.GetSN: WideString;
begin
result:='delphi-jerry';
end;
我C#的代码是:
C# code:
TestOCXClass ee = new TestOCXClass();
MessageBox.Sho ......