コード例 #1
0
ファイル: Updater.cs プロジェクト: seboslaw/wmautoupdate
 protected static extern bool CeRunAppAtTime(string pwszAppName, ref SystemTime lpTime);
コード例 #2
0
ファイル: Updater.cs プロジェクト: seboslaw/wmautoupdate
        private void restartApp()
        {
            SystemTime timeToLaunch = new SystemTime(DateTime.Now.AddSeconds(11));
              bool res = CeRunAppAtTime(callingAssembly.GetName().CodeBase, ref timeToLaunch);

              Application.Exit();
        }