Created
December 12, 2021 15:13
-
-
Save maor365scores/6191e7d41ec2a251256b5d586c12fe7e to your computer and use it in GitHub Desktop.
q
q
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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