Is it possible to avoid list property tags when serializing?
//[Serializable()] - removed, unnecessary public class Foo { protected List fo
Adding:
[System.Xml.Serialization.XmlElement("FooBar")] public virtual List FooBars { get { return fooBars; } set { fooBars = value; } }
Results in
7 76 67