2
私は次のクラスがあります:私は、XMLシリアライザを使用して、その結果取得していますC#でxmlserializerを使用してxmlをカスタマイズする方法は?
public class DisplayFunction
{
[System.Xml.Serialization.XmlAttribute()]
public byte[] Color
{
get;
set;
}
[System.Xml.Serialization.XmlAttribute()]
public FunctionShape Shape
{
get;
set;
}
[System.Xml.Serialization.XmlAttribute()]
public int Id
{
get;
set;
}
}
を:私は結果になりたいながら
<DisplayFunctions Color="et57hQ==" Shape="Bar" Id="514" />
を:
<DisplayFunctions Color="122,222,123,133" Shape="Bar" Id="514" />
どのようにすることができますその結果を得る?
http://stackoverflow.com/questions/1075860/c-sharp-custom-xml-serialization、http://stackoverflow.com/questions/3109827/custom-xml-serialization 、http://stackoverflow.com/questions/10292084/custom-xml-serialization – WhiteKnight