Notes about `System.Threading.Timer`
This file contains 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
StateObject object = new StateObject(); | |
object.Number = 5; | |
System.Threading.Timer timer = new System.Threading.Timer(new TimerCallback(callback), object, ...); |
This file contains 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
StateObject object = new StateObject(); | |
System.Threading.Timer timer = new System.Threading.Timer(new TimerCallback(callback), object, ...); | |
object.Number = 5; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment