Tasharen Entertainment Forum
Support => NGUI 3 Support => Topic started by: AGB on May 27, 2014, 04:02:52 PM
-
Null reference in ByteReader (This place and a bit below in code)
string s = ReadLine(false);
s = s.Replace("\\n", "\n"); <--------- Null reference
if (s == null) return null;
Should it be like this?
string s = ReadLine(false);
if (s == null) return null;
s = s.Replace("\\n", "\n");
-
That's already how it is. You should update.