I am having a VC++ stucture like
struct VideoInputV20 {
int m_nBrightness;
int m_nSharpness;
int m_nSaturation;
int m_nContrast;
int m_nInputState;
CString m_sObjref;
};
Here in C# I'll receive this stucture in byte[]. Here I need to convert byte[] to stuct.
How can I achive this? Please provide sample code, if possible.