So I am still learning in coding, but I don't understand this line:
Quote:
#if MONO
private static byte[] m_Buffer;
#endif
|
it is dead code, because correct it would be usually
Quote:
#if !MONO
private static byte[] m_Buffer;
#endif
|
but that causes an error