Skip to content

Commit 6b6f026

Browse files
committed
InvariantCulture as Default
1 parent c9cd0b3 commit 6b6f026

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

MainClass.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using System.Linq;
99
using ThermoRawFileParser.Query;
1010
using ThermoRawFileParser.XIC;
11+
using System.Globalization;
1112

1213
namespace ThermoRawFileParser
1314
{
@@ -20,6 +21,9 @@ public static class MainClass
2021

2122
public static void Main(string[] args)
2223
{
24+
//Set Invariant culture as default for all further processing
25+
CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
26+
2327
// introduce subcommand for xics and spectra query
2428
if (args.Length > 0)
2529
{

0 commit comments

Comments
 (0)