问题描述
- 急急急,C++ 与 C# 的转换问题。。。。。。。。。。。。
-
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#里面的实现方式是怎么样的呢?
求助~~~
解决方案
解决方案二:
C++ 那是函数指针
C# 对应
https://msdn.microsoft.com/en-us/library/ms173171.aspx
时间: 2024-11-05 12:15:59