using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Differ { class Program { static void Main(string[] args) { string sourcePath, savePath; Console.Write("Source Path: "); sourcePath = Console.ReadLine(); Console.Write("Save Path: "); savePath = Console.ReadLine(); FileSystem fs = new FileSystem(); fs.Parse(sourcePath); fs.SaveToXmlFile(savePath); Console.WriteLine("Success."); Console.ReadKey(); } } }