Created
December 10, 2016 17:45
-
-
Save tdittmar/9e6667a0eccc2cab0bf15bf82cbbc7c7 to your computer and use it in GitHub Desktop.
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