예제 #1
0
파일: Xml.cs 프로젝트: rgatkinson/nadir
 public override XmlElement ToXml(XmlContext context)
     {
     return context.CreateTreedElement(this, "Plex", this.Strands.ConvertAll<IXmlWritable>(child => (IXmlWritable)child));
     }
예제 #2
0
파일: Xml.cs 프로젝트: rgatkinson/nadir
 public override XmlElement ToXml(XmlContext context)
     {
     return context.CreateTreedElement(this, "Mixture", this.molecules.ConvertAll<Molecule, IXmlWritable>(child => (IXmlWritable)child));
     }
예제 #3
0
파일: Xml.cs 프로젝트: rgatkinson/nadir
 public override XmlElement ToXml(XmlContext context)
     {
     return context.CreateTreedElement(this, "Strand", this.domains.ConvertAll<IXmlWritable>(domain => (IXmlWritable)domain));
     }