本文介绍了在线程中调用具有返回类型或输出参数的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友们,

我试图通过线程调用一些方法.我在asp.net中使用它.
方法如下:

 私有 无效 MethodName(字符串 strParam1,输出 字符串 strParam2,输出 字符串 strParam3)


 私有  int  MethodName(字符串 strParam1,字符串 strParam2)



我已尽力而为,但未找到任何解决方案.能给我一些建议吗?

谢谢您的期待.

亲切的问候,
Arshad Alam

解决方案



Hi friends,

i am trying to call some methods via threading. I am using it in asp.net.
methods are like:

private void MethodName(string strParam1, out string strParam2,out string strParam3)


private int MethodName(string strParam1,  string strParam2)



i have tried my best but not found any solution. can any give me some suggestion.

thanking you in anticipation.

warm regards,
Arshad Alam

解决方案




这篇关于在线程中调用具有返回类型或输出参数的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 20:47