this is my class file which contains variables which i need to store.
public class general
{
String imagename2;
String name;
public string getimage()
{
return imagename2;
}
public void viewimage(String imagename){
imagename2 = imagename;
}
}
I firstly store it to the class file
selected = lbFiles.SelectedItem.ToString();
general item = new general();
item.viewimage(selected);
MessageBox.Show(selected);
NavigationService.Navigate(new Uri("/View.xaml", UriKind.Relative));
and by the time it redirect to another page , when i retrieve, its null instead of the value
public View()
{
InitializeComponent();
general general = new general();
viewimagename = general.getimage(); // NULL HERE!!!!!!!!!!!!!!!!!!!!!
this.ReadFromIsolatedStorage(viewimagename+".jpg");
// LoadFromLocalStorage();
}
I've been thinking and not sure why it became null o.O Can someone help me with this? Thanks i advance! :D
newyou're ending up with a new instance ofgeneralso the one you are storing to is not the same one you are reading from. It's like putting your cash in a cereal packet, throwing it away and then opening a brand new box of cereal and then wondering where your cash has gone. – Paul Ruane Jan 30 '12 at 16:38