Nemerle.VisualStudio.Project.NemerleProjectNode.DeleteTempCmdFile C# (CSharp) Method

DeleteTempCmdFile() static private method

static private DeleteTempCmdFile ( Process process, string cmdFilePath ) : void
process System.Diagnostics.Process
cmdFilePath string
return void
        static void DeleteTempCmdFile(OsProcess process, string cmdFilePath)
        {
            Action action = () => { process.WaitForExit(20000); File.Delete(cmdFilePath); };
            action.BeginInvoke(null, null);
        }