how can i make my custom class serializable and “savable” into IsolatedStorageSettings as value in a key-value pair? I tried with [DataContract] on top of class but VisualStudio says me that it can’t be found!
how can i make my custom class serializable and savable into IsolatedStorageSettings as value
Share
Use Add Reference dialog box to add reference to assembly mentioned by qianfg (
System.Runtime.Serialization).Then you can add
using System.Runtime.Serialization;line to your file.