I have a list of hyperlink button, created at runtime
public void SaveBookmark()
{
Button objButton = new Button();
objButton.Con
You can "save" button itself in your code (just leave as it is).
However, you'd want to save hyperlinks themselves. If you need readability (so you can open and read file, which contains hyperlinks, via "Windows Phone Power Tools"), then use json for writing file (sample and screenshots included). Otherwise, use binary stream (sample included).