Webcomic 画像を FlipView に読み込むアプリがあり、これをページ状態で保存したいのですが、List を LocalSettings に保存する際に問題が発生したようです。FlipView の状態を保存できるように、このデータをシリアル化する方法はありますか? コミックのコードは次のとおりです。
public class Comic
{
public int Month { get; set; }
public int Num { get; set; }
public string Link { get; set; }
public int Year { get; set; }
public string News { get; set; }
public string Safe_Title { get; set; }
public string Transcript { get; set; }
public string Alt { get; set; }
public string Img { get; set; }
public string Title { get; set; }
public int Day { get; set; }
public Comic() { }
}