本文介绍了在Vb.net 2010中调用C ++ DLL函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  double   __ stdcall  Dif( int  a)
{
if (a!= 1300
{
return value ;
} else
{
return 9048034884 ;
}
}





这是我在C ++中的功能。

我想要从VB.net 2010调用此dll函数。

请帮助我这样做。

解决方案



double __stdcall Dif(int a)
{
    if (a != 1300)
    {
        return value;
    }else
    {
        return 9048034884;
    }
}



This is my function in C++.
I want to call this dll function from VB.net 2010.
Please Help Me to do this.

解决方案



这篇关于在Vb.net 2010中调用C ++ DLL函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 10:22