--- xmlTools/trunk/posUpdate/Program.cs 2013/03/21 10:43:10 714 +++ xmlTools/trunk/posUpdate/Program.cs 2013/03/26 02:30:48 742 @@ -10,7 +10,7 @@ namespace xmlTools { class Program { - public static readonly string toolsVersion = "0.7d"; + public static readonly string toolsVersion = "0.8"; public enum appErrors { @@ -42,13 +42,8 @@ namespace xmlTools } } - static void Main(string[] args) + public static void Main(string[] args) { - //long ticksThisTime = 0; - //System.Diagnostics.Stopwatch timePerParse = System.Diagnostics.Stopwatch.StartNew(); - - - try { //We use a command parse library due to its advantages @@ -58,16 +53,6 @@ namespace xmlTools { printAppError(appErrors.ERROR_PARAMS, "Error processing parameters:\n" + e.ToString()); } - - - - //// Stop the timer, and save the - //// elapsed ticks for the operation. - - //timePerParse.Stop(); - //ticksThisTime = timePerParse.ElapsedTicks; - //Console.WriteLine(ticksThisTime); - //Console.ReadLine(); } } }