我真的很喜欢编码,从来没有研究它或类似的东西,只是自己学习,以前从未做过,但我正在尝试创建我的第一个真正的新应用程序。 但是,我在2天内遇到了一些我无法弄清楚的问题,所以我希望你能帮助我。
好吧,所以在创建youtubedlCurrentWorker_Process()之前,我确实定义了'public string CurrentYouTubeDLVersion'。
但是,当我的应用程序中的一个按钮执行youtubedlCompareVersion_Process()时,当它出现在比较点时,CurrentYouTubeDLVersion字符串为空。
以下只是我的代码的一小部分。
为什么GetCersion中的字符串CurrentYouTubeDLVersion为空,而GetCurrentVersion在它之前运行?
即使我在Visual Studio中双击“CurrentYouTubeDLVersion”,它也不会显示GetCurrentVersion_Process中的链接。
namespace MediaDownloader
{
public partial class updates : UserControl
{
public string LatestYoutubeDLVersion;
public string CurrentYouTubeDLVersion;
public void youtubedlGetCurrentVersion_Process()
{
if (File.Exists(YouTubeDLPath))
{
//Here I get the current version of youtube-dl.exe, to get the version number, we have to run youtube-dl.exe --version
Process youtubedl = new Process();
youtubedl.StartInfo.CreateNoWindow = true;
youtubedl.StartInfo.UseShellExecute = false;
youtubedl.StartInfo.RedirectStandardOutput = true;
youtubedl.StartInfo.RedirectStandardError = true;
youtubedl.StartInfo.FileName = YouTubeDLPath;
youtubedl.StartInfo.Arguments = " --version";
youtubedl.Start();
string CurrentYouTubeDLVersion = youtubedl.StandardOutput.ReadToEnd();
this.Dispatcher.Invoke((Action)(() =>
{
CurrentYouTubeDLVersionText.Text = "Current youtube-dl.exe version: " + CurrentYouTubeDLVersion;
YouTubeDLVersionStatusText.Text = null;
UpdateYouTubeDL.IsEnabled = false;
}));
}
public void youtubedlCompareVersion_Process()
{
youtubedlGetCurrentVersion_Process();
string LatestYoutubeDLVersion = WebClient.DownloadString("https://yt-dl.org/latest/version");
MessageBox.Show("Latest:" + LatestYoutubeDLVersion + "Current " + CurrentYouTubeDLVersion);
int YouTubeDLUptodate = CurrentYouTubeDLVersion.CompareTo(LatestYoutubeDLVersion);
if (YouTubeDLUptodate < 1)
{
YouTubeDLVersionStatusText.Text = "Your youtube-dl.exe is out of date, please click the button below to update.";
UpdateYouTubeDL.IsEnabled = true;
}
else
{
YouTubeDLVersionStatusText.Text = "youtube-dl.exe is up to date!";
UpdateYouTubeDL.IsEnabled = false;
}
}
}
答案 0 :(得分:0)
在youtubedlGetCurrentVersion_Process
方法中,您正在创建一个新的CurrentYouTubeDLVersion
字符串,它与您添加到班级顶部的公开CurrentYouTubeDLVersion
完全分开。
string CurrentYouTubeDLVersion = youtubedl.StandardOutput.ReadToEnd();
分配给您所做的类级变量,而不是创建新的string
:
CurrentYouTubeDLVersion = youtubedl.StandardOutput.ReadToEnd();
然后,youtubedlCompareVersion_Process
可以使用该值。
答案 1 :(得分:0)
取出&#39;字符串&#39;在CurrentYouTubeDLVersion前面,它应该工作
public youtubedlGetCurrentVersion_Process()
{
/* removed code to make easier to read */
//string CurrentYouTubeDLVersion = youtubedl.StandardOutput.ReadToEnd();
CurrentYouTubeDLVersion = youtubedl.StandardOutput.ReadToEnd();
/* removed code to make easier to read */
}