QTP调用.NET4.0的DLL报错,求助
c#DLL代码using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QtpLibrary
{
public class QtpTest
{
public int AddTest(int a, int b, int c)
{
return a > b ? a + b : a + c;
}
}
}
QTP 代码
Set qtp = DotNetFactory.CreateInstance("QtpLibrary.QtpTest","D:\WorkPlace\C Sharp\ClassLibrary\QtpLibrary\QtpLibrary\bin\Debug\QtpLibrary.dll")
msgbox qtp.AddTest(1,2,3)
报错见图片 亲,QTP11支持.net 3.5,你的工程用.3.5 重新編譯 同意楼上。
页:
[1]