问题描述
- 急急急,帮忙把下面C++ 翻译成C#语言....
-
C++里有一个函数是这样的:
int __stdcall RegisterFunctions(TRegisterFunction regf);TRegisterFunction 如下:
typedef int (__stdcall * TRegisterFunction) (int SockID, char * RmtIP, int RmtPort, char srcType, char stationNo[]);我在页面调用RegisterFunctions函数的时候需要传递参数 regf,实际上是这样的:
RegisterFunctions(regf);
其中regf为:int __stdcall regf(int SockID, char * RmtIP, int RmtPort, char srcType, char stationNo[])
{
return 0;
}这个是不是C#中的委托?所以C#代码应该是怎样的呢?
解决方案
这个regf是函数指针呀
解决方案二:
这个regf是函数指针呀
解决方案三:
求助,急急急!!!
时间: 2024-11-03 13:19:35