I am creating an app for Windows Phone 7 using Silverlight in C#.
I have found many references to the DispatcherTimer(DispatcherPriority) overload, but I cannot set this in my code (e.g. timer = new DispatcherTimer(DispatcherPriority) tells me "DispatcherPriority does not exist in the current context").
I thought DispatcherTimer is overloaded with DispatcherTimer(DispatcherPriority) but I cannot see any reference to this constructor when I use it in my code. I would like to try setting the priority to "normal" or "send" but I cannot seem to implement any DispatcherTimer with a priority. Any suggestions?