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