public void Refresh()
 {
     if (PathPaser == null)
     {
         PathPaser = new NativePathParser();
     }
     PathPaser.Init();
 }
 public IProgress PrepareSystem(System.Action finishCallback)
 {
     PathPaser = new NativePathParser();
     PathPaser.Init();
     if (finishCallback != null)
     {
         finishCallback.Invoke();
     }
     return(new ProgressData());
 }