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