Demogame/Stats/StatTypeExtensions.cs
Line 27
this line;
return "stat_" + statType.ToString().ToLower();
should be like this;
return "stat_" + statType.ToString().ToLowerInvariant();
otherwise the compiler will throw an error like "stat_ınt" not found in the
character table, because converting "Int" to lowercase on a turkish pc means
"ınt" not "int"
Refer to "Turkish I" problem on
http://www.moserware.com/2008/02/does-your-code-pass-turkey-test.html
Original issue reported on code.google.com by semih.te...@gmail.com on 11 Nov 2011 at 6:36
Original issue reported on code.google.com by
semih.te...@gmail.com
on 11 Nov 2011 at 6:36Attachments: