After Unity upgrades to 2021, there will be format conversion problems when delivering packages.

报错例子
1.Non-fatal Exception: java.lang.Exception FormatException : Input string was not in a correct format.

2.Non-fatal Exception: java.lang.ExceptionFormatException : String was not recognized as a valid DateTime.

It runs fine on the computer, but there are errors in online package statistics.

原因:不同国家
System.Globalization.CultureInfo.DefaultThreadCurrentCulture = new System.Globalization.CultureInfo(“en-US”);
System.Globalization.CultureInfo.DefaultThreadCurrentUICulture = new System.Globalization.CultureInfo(“en-US”);

Guess you like

Origin blog.csdn.net/qq_42980269/article/details/126938883