using System; using System.Collections.Generic; using System.Text; using System.ComponentModel; namespace Svg { [SvgElement("title")] public class SvgTitle : SvgElement { public override string ToString() { return this.Content; } public override SvgElement DeepCopy() { return DeepCopy(); } public override SvgElement DeepCopy() { var newObj = base.DeepCopy() as SvgTitle; return newObj; } } }