I am using a simple Observable Collection to store list entries in my notepad app. How can I make entries in this collection persistent?
public ObservableCollection<string> ListItem { get; set; }
public string Items { get; set; }
public MainPageViewModel()
{
ListItem = new ObservableCollection<string>();
}