thanks for the help this was my solution
Code:
[StructLayout(LayoutKind.Sequential)]
public class packet
{
   [MarshalAs (UnmanagedType.ByValTStr,SizeConst=256)] public string message;
   public int id;
}



Compulsive compiler