in

23 September 2010 - Posts

  • Thu

    VB.Net comes to Windows Phone 7

    Yep – it is CTP at the mo, but will be coming. Ready the details here . At the moment it hooks into the VS 2010 Pro (or better) versions – it doesn’t use the Express bits just yet.
  • Thu

    WP7 memory monitoring tip

    WP7 support guru Reed Robison shared this little gem, I thought I’d pass it on… You can monitor memory pretty easily during debug… You can setup a timer in your app.xaml like this : System.Windows.Threading.DispatcherTimer timer = new System.Windows.Threading.DispatcherTimer(); timer.Interval = TimeSpan.FromMilliseconds(1000d); timer.Tick += new EventHandler(timer_Tick); timer.Start(); Which can dump constant memory info using a handler like this : void timer_Tick( object sender, EventArgs e) { ...
More Posts