Quote:
byte[] RData = new byte[DataLen];
fixed (byte* p = RData, p2 = S.Data)
Native.memcpy(p, p2, DataLen);
if (DataHandler != null)
DataHandler.Invoke(S, RData);
What's Highlighted in red is what's giving me the problem :/ any idea why?
(im running the source with visual studio 2010)






