We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1d99b commit bb409c0Copy full SHA for bb409c0
test/MsgPack.UnitTest/LegacyJapaneseCultureInfo.cs
@@ -30,7 +30,11 @@ namespace MsgPack
30
internal sealed class LegacyJapaneseCultureInfo : CultureInfo
31
{
32
public LegacyJapaneseCultureInfo()
33
- : base( "ja-NP" )
+#if NETSTANDARD1_1 || NETSTANDARD1_3 || SILVERLIGHT
34
+ : base( "ja-JP" )
35
+#else
36
+ : base( "ja-JP", true )
37
+#endif // NETSTANDARD1_1 || NETSTANDARD1_3 || SILVERLIGHT
38
39
var numberFormatInfo = CultureInfo.InvariantCulture.NumberFormat.Clone() as NumberFormatInfo;
40
numberFormatInfo.NegativeSign = "\uFF0D"; // Full width hiphen
0 commit comments