我的VB.NET程序有问题。它适用于某些机器,有些则不适用。 我正在使用Awesomium Framework和.NET Framework 4.0(因为Windows XP用户......)。 在一半的机器上,一切都完美无缺地加载。在其他方面,它只显示空白页面。甚至代码也很简单:
func_C (arg1,arg2)
{
return 1;
}
func_B (arg1,arg2)
{
return 0;
}
func_A ()
{
/*The code is writen to always call func_B*/
return func_B(arg1,arg2)
}
main()
{
int result;
result = func_A ();
//here result = 0 as expected.
/*Do some magic*/
result = func_A ()
//result should be 1
}