本文介绍了对于XmlSerializer的和的System.Drawing.Color最佳解决方案的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

的System.Drawing.Color对象显然不会序列化与XmlSerializer的。什么是XML序列化颜色的最佳方法是什么?

System.Drawing.Color objects apparently won't serialize with XmlSerializer. What is the best way to xml serialize colors?

推荐答案

最简单的方法,在它的心脏采用这样的:

The simplest method uses this at it's heart:

String HtmlColor = System.Drawing.ColorTranslator.ToHtml(MyColorInstance);

这将只是转换任何颜色是使用HTML这是很容易地使用反序列化标准的十六进制字符串:

It will just convert whatever the color is to the standard hex string used by HTML which is just as easily deserialized using:

Color MyColor = System.Drawing.ColorTranslator.FromHtml(MyColorString);

这样,你只是在与沼泽标准弦...

That way you're just working with bog standard strings...

这篇关于对于XmlSerializer的和的System.Drawing.Color最佳解决方案的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 23:49