示例#1
0
 void DownloadPlayerNotice(object sender, DownloadingPlayerEventArgs e)
 {
     this.outputBox.AppendText($"{e.TimeGrabbed}: {e.Message}" + Environment.NewLine);
     return;
 }
示例#2
0
 static void DownloadPlayerNotice(object sender, DownloadingPlayerEventArgs e)
 {
     Console.WriteLine($"{e.TimeGrabbed}: {e.Message}");
     return;
 }