Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Ready for the shortest blog post in history?
Looking for a time in Windows 8? Look no further. Just drop this code into the App constructor on the App.xaml.cs page…
var d = new DispatcherTimer();
d.Start();
d.Tick += (sender, o) => { Debug.WriteLine("tick"); };
Now go take a look at Visual Studio’s Output pane and watch it tick.