BExplorer.Shell.ShellView.StartProcessInCurrentDirectory C# (CSharp) 메소드

StartProcessInCurrentDirectory() 개인적인 메소드

private StartProcessInCurrentDirectory ( IListItemEx item ) : void
item IListItemEx
리턴 void
    private void StartProcessInCurrentDirectory(IListItemEx item) {
      Process.Start(new ProcessStartInfo() {
        FileName = item.ParsingName,
        WorkingDirectory = this.CurrentFolder.ParsingName
      });
    }
ShellView