将类的数据写入共享内存的问题
目的:在c#中将类TEST_STRUCT的一个对象的数据写到共享内存中。在另一个VC6.0生成的进程中读取该内存。类的定义如下class FR_Param
{
public int 易做图;
public int type;
public int bEyes;
public int bNose;
public int bMouth;
} ;
class FR_Thumb
{
public char []szName ;
public char[] szPathFile;
public float fSimilar;
public FR_Thumb()
{
szName = new char[255];
szPathFile = new char[255];
}
} ;
class TEST_STRUCT
{
public FR_Param param;
public char []filePath ;
public FR_Thumb []thumb ;
public char[] reserved ;
public TEST_STRUCT()
{
filePath = new char[255];
reserved = new char[100];
thumb = new FR_Thumb[100];
}
};
请高手帮忙,最好能有代码。 --------------------编程问答-------------------- 不会vc 帮顶一下 --------------------编程问答-------------------- 不会操作内存,不过可以用微软的Enterprise Library 用这个来写内存共享很简单,以前一直这么做
补充:.NET技术 , ASP.NET