Gruppe22.Backend.ItemTile.Save C# (CSharp) Méthode

Save() public méthode

Method save the ItemTile in a .xml file. Just writes a start tag and calls the save method for the item.
public Save ( XmlWriter xmlw ) : void
xmlw System.Xml.XmlWriter Xmlwriter
Résultat void
        public override void Save(XmlWriter xmlw)
        {
            xmlw.WriteStartElement("ItemTile");
            _item.Save(xmlw);
            xmlw.WriteEndElement();
        }