Close -> Dispose

This commit is contained in:
Natsumi
2025-10-22 12:58:38 +11:00
parent 482d8abd6d
commit 9547297a09
2 changed files with 12 additions and 31 deletions

View File

@@ -78,8 +78,7 @@ namespace VRCX
FileName = $"{path}\\steam.exe",
UseShellExecute = false,
Arguments = $"-applaunch 438100 {arguments}"
})
?.Close();
})?.Dispose();
return true;
}
}
@@ -122,7 +121,7 @@ namespace VRCX
FileName = path,
UseShellExecute = false,
Arguments = arguments
})?.Close();
})?.Dispose();
return true;
}
}