AutoUpdate.cs 565 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml;
  5. namespace EAPClock
  6. {
  7. public class AutoUpdate
  8. {
  9. public static void CheckUpdate()
  10. {
  11. //// bool isOrNotUpdate=false;
  12. // XmlDocument xmlDocument = new XmlDocument();
  13. // XmlElement xmlElement = xmlDocument.DocumentElement;
  14. // //xmlElement.SelectSingleNode("");
  15. // xmlDocument.Load("Local.xml");
  16. // xmlElement.SelectSingleNode("/LocalVersion/ServerUpdateUrl");
  17. }
  18. }
  19. }