怎样才能把DLL的结构体数据传到c#结构体里来?

DLL是c生成的,入口点是main函数,DLL的结构体没有用头文件而是放在主函数中请问高手们怎样才能把DLL的结构体数据传到c#结构体里来?谢!我下面的程序少了那些语句?... DLL是c生成的,入口点是main函数,DLL的结构体没有用头文件 而是放在主函数中 请问高手们怎样才能把DLL的结构体数据传到c#结构体里来?谢!
我下面的程序少了那些语句?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;

namespace ConsoleApplication1
{
class Program
{
[DllImport("JMdll.dll", EntryPoint = "main", CallingConvention = CallingConvention.Cdecl)]
public static extern byte main(byte input0);

[DllImport("JMdll.dll", EntryPoint = "main", CallingConvention = CallingConvention.Cdecl)]
public static extern byte main(ref MyBuf mydata);

[StructLayout(LayoutKind.Sequential)]
public struct MyBuf //c#结构体
{
public byte out0;

}

static void Main(string[] args)//C#主函数
{
MyBuf Aastruct = new MyBuf();//这里这个语句应该怎样执行 才能把DLL数据传过来

byte Pout0 = Aastruct.out0;

Console.WriteLine(Pout0);
Console.ReadKey();
}

}
}

[StructLayout(LayoutKind.Sequential)]
public struct MyBuf
{
public byte out0;
}//*/

static void Main(string[] args)
{
byte[] inputA; inputA = new byte[16] { 0x3F,};
byte AABB = main(inputA[0], inputA[1],);
string Amain0 = Convert.ToString(AABB, 16).ToUpper().PadLeft(2, '0');
MyBuf Aastruct = new MyBuf();
//下面应该执行怎样的语句 才能把c写的DLL结构体数据传过来

byte Pout0 = Aastruct.out0;
Console.WriteLine(Pout0);
Console.ReadKey();
}

}
}
public static extern byte main(byte input0); 在c的DLL主函数(入口点)中有变量
是这样的
main(byte input0)
{
struct MyBuf
{
uint8_t out0;
}mydata;
}
c#主函数我发重了 多发了一遍
展开
 我来答
若以下回答无法解决问题,邀请你更新回答
司马刀剑
高粉答主

2017-09-28 · 每个回答都超有意思的
知道顶级答主
回答量:4.6万
采纳率:93%
帮助的人:7614万
展开全部
你调用.dll文件中的东西不是要用引用嘛 ,然后呢新建这个结构的实例 然后用这个结构点出里面的各个值付给自己项目中的结构中
追问
public static extern byte main(ref MyBuf mydata); 这个实例函数怎么写才能把数据传到c#中来
你调用.dll文件中的东西不是要用引用嘛 这句话没看懂
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式