static void Main(string[] args)
 {
     string pathname = "D://test.txt";
     XML xmltext = new XML(pathname);
     xmltext.OpenTag("lel");
     xmltext.AddAtribute("woof?", "woofwoof");
     xmltext.CloseTag();
     xmltext.OpenTag("abv");
     xmltext.OpenTag("abvg");
     xmltext.Finish();
 }
 public void InitializeXML()
 {
     rnd = new XML("C:\\Users\\MixD\\Desktop\\GitRepos\\HackBulgariaHomeworks\\HackTasksWeek6\\Tuesday\\test.txt");
 }