NavigationService.BackStack.FirstOrDefault() does not contains definition in Windows Phone 8?

StackOverflow https://stackoverflow.com/questions/15697363

Вопрос

I am trying to get the last page in the navigation using the following in WP8

var lastPage = NavigationService.BackStack.FirstOrDefault();

However Visual Studio 12 complaints that it does not contain a definition for FirstOrDefault

Это было полезно?

Решение

Don't forget to add using System.Linq; at the top of your code file.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top