This commit is contained in:
bao-qian
2016-05-22 05:51:00 +01:00
parent 826a69c531
commit 1867e56739
2 changed files with 12 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Xml;
@@ -63,7 +64,7 @@ namespace Wox.Infrastructure.Exception
sb.Append("* Command Line: ");
sb.AppendLine(Environment.CommandLine);
sb.Append("* Timestamp: ");
sb.AppendLine(XmlConvert.ToString(DateTime.Now));
sb.AppendLine(DateTime.Now.ToString(CultureInfo.InvariantCulture));
sb.Append("* IntPtr Length: ");
sb.AppendLine(IntPtr.Size.ToString());
sb.Append("* System Version: ");