PutraKg
PutraKg

Reputation: 2246

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

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

Upvotes: 3

Views: 1064

Answers (1)

Kevin Gosse
Kevin Gosse

Reputation: 39007

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

Upvotes: 6

Related Questions