I am trying to get the activity that was the previous activity (or last called) of the current activity. How would I go about doing this base.parent just return the parent container.
Calling out the exact ID will not work because the context of the current activity could have arrived from many different activities.
Thanks,
Mardo

Getting Previous Activity
Jeewai
this.Parent.Activities[this.Parent.Activities.IndexOf(this) - 1]
gets the previous activity of the same "level"
angelar
Any help would be greatly appreciated.