View Single Post
Old 09-04-2007, 05:19 PM   #6 (permalink)
Sabaoth
Newbie
 
Join Date: Jul 2006
Posts: 22
Default

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

Last edited by Sabaoth; 09-12-2007 at 07:26 PM.
Sabaoth is offline   Reply With Quote