摘要:
intptr to array stringstring[] _outputStrArray=null; int channelCount = 0;///返回数组大小 IntPtr Channels = new IntPtr(); int reslut = NativeMethods.getChannels(Global.Handle, nru, ref Channels, ref channelCount); if (reslut == 0) //将指针数据转换为string 数组 { IntPtr[] OutPointers = new IntPtr[channelCount]; ... 阅读全文