C#复杂类型序列化
[Serializable] public class CardItemInfo { private int lineWidth;//线宽 private CardItemInfo childCardItemInfo; public int LineWidth { get { return lineWidth; } set { lineWidth = value; } } public int ChildCardItemInfo { get { return childCardItemInfo; } set { childCardItemInfo = value; } } }
定义列表
private static List<CardItemInfo> listItemInfo=new List<CardItemInfo>();
序列化到XML
public static bool SaveXml() { CardItemInfo cardItemInfo=new CardItemInfo(); cardItemInfo.LineWidth = 11; CardItemInfo childCardItemInfo=new CardItemInfo(); childCardItemInfo.LineWidth = 22; cardItemInfo.ChildCardItemInfo = childCardItemInfo; listItemInfo.Add(cardItemInfo); Stream fStream = new FileStream(System.Windows.Forms.Application.StartupPath + @"\test11.xml", FileMode.Create); XmlSerializer xmlFormat = new XmlSerializer(typeof(List<CardItemInfo>)); xmlFormat.Serialize(fStream, listItemInfo);//序列化对象 return false; }
从XML反序列化
public static bool LoadFromXml(String fileName) { try { System.IO.Stream fStream = new FileStream(fileName, FileMode.Open); XmlSerializer xmlFormat = new XmlSerializer(typeof(List<CardItemInfo>)); listItemInfo = (List<CardItemInfo>)xmlFormat.Deserialize(fStream); fStream.Close(); MessageBox.Show("OK"); } catch (Exception e) { MessageBox.Show(e.Message); return false; } return true; }
博客资源:QQ群616945527,博客相关资源,同名文件。
本博客是个人工作中记录,更深层次的问题可以提供有偿技术支持。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。