private void Btn_ArtistUpdate_Click(object sender, EventArgs e) { Thread th = new Thread(new ThreadStart(() => { DBDownloader.InfoDownload("artists"); })); th.Start(); }
private void Btn_CharacterUpdate_Click(object sender, EventArgs e) { Thread th = new Thread(new ThreadStart(() => { DBDownloader.InfoDownload("characters"); })); th.Start(); }