Skip to content

Instantly share code, notes, and snippets.

@maor365scores
Created December 12, 2021 15:13
Show Gist options
  • Save maor365scores/6191e7d41ec2a251256b5d586c12fe7e to your computer and use it in GitHub Desktop.
Save maor365scores/6191e7d41ec2a251256b5d586c12fe7e to your computer and use it in GitHub Desktop.
q q
public override bool Scan()
{
var mainScanTask = ScanMainPage();
var innerPagesScanTask = mainScanTask.ContinueWith(finishedTask => ScanGamePage()).Unwrap();
innerPagesScanTask.Wait();
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment