12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml;
- namespace EAPClock
- {
- public class AutoUpdate
- {
- public static void CheckUpdate()
- {
- //// bool isOrNotUpdate=false;
- // XmlDocument xmlDocument = new XmlDocument();
- // XmlElement xmlElement = xmlDocument.DocumentElement;
- // //xmlElement.SelectSingleNode("");
- // xmlDocument.Load("Local.xml");
-
- // xmlElement.SelectSingleNode("/LocalVersion/ServerUpdateUrl");
- }
- }
- }
|