public XmlDocument Read()
 {
     XmlDocument xml;
     using (StreamReader file = new StreamReader(FilePath))
     {
         xml = file.ToXmlDocument();
     }
     return xml;
 }