how to delete page from navigation stack - c# windows 8

c#, navigation, windows-runtime, xaml

Solution

Frame.BackStack.RemoveAt(Frame.BackStack.Count - 1);

Problem

I need to delete selective pages from the navigation stack (winRT- C#) I checked: WinRT - How to ignore or delete page from navigation history and Pop pages off navigation stack in Windows 8 App but couldn't figure out how to manipulate the navigation stack. Is it possible to manipulate this navigation stack?

Original source

Related problems