SaveBAK() 공개 메소드

public SaveBAK ( ) : System.Boolean
리턴 System.Boolean
예제 #1
0
 private void timerAutoSave_Tick(object sender, EventArgs e)
 {
     if (wsp.NeedSave && wsp.HavePath)
     {
         // 分离线程,防止使用 U 盘等低速存储时打字会卡
         var th = new Thread(() => wsp.SaveBAK());
         th.Start();
     }
 }