Where is timer in a Windows store app?

c#, timer, windows-store-apps

Solution

Different timers for different needs. Roughly...

DispatcherTimer - When you want work to be executed on the UI thread.

ThreadPoolTimer - When you want work to be executed on a background thread.

Problem

I could not find the Timer when developing a Windows Store App in c#. What is the alternative /new name/way of use of it?

Original source