We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9cd0b3 commit 6b6f026Copy full SHA for 6b6f026
1 file changed
MainClass.cs
@@ -8,6 +8,7 @@
8
using System.Linq;
9
using ThermoRawFileParser.Query;
10
using ThermoRawFileParser.XIC;
11
+using System.Globalization;
12
13
namespace ThermoRawFileParser
14
{
@@ -20,6 +21,9 @@ public static class MainClass
20
21
22
public static void Main(string[] args)
23
24
+ //Set Invariant culture as default for all further processing
25
+ CultureInfo.DefaultThreadCurrentCulture = CultureInfo.InvariantCulture;
26
+
27
// introduce subcommand for xics and spectra query
28
if (args.Length > 0)
29
0 commit comments