Hello,
I'm trying to retrieve a structure in C# from a C dll. Really to say I'm not an expert programmer on both C/C#, and will appreciate any comments and suggestions.
Here's a C dll coded structure, to be retrieved..
--
Code:
struct MESSAGEE 
{
      int               MsgNo;          
      int               MsgType;       
      char        MsgTypeText[64];
      char        MsgNoText[64];
...