Skip to content

Commit

Permalink
Fix number formatting for trace configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Dec 7, 2023
1 parent 867fa99 commit 87ef29e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;

Expand All @@ -36,7 +37,7 @@ protected static string WriteString(string s)

protected static string WriteNumber(int i)
{
return i.ToString();
return i.ToString(CultureInfo.InvariantCulture);
}

protected static string WriteRegEx(string re)
Expand Down

0 comments on commit 87ef29e

Please sign in to comment.