Пример #1
0
 private void addProperty(XmlElement parent,
                          string name, AnnotationsNode value)
 {
     // For our purposes, an AnnotationsNode is just a list of
     // the annotations rather than handled as a node.
     addProperty(parent, name, (from x in value select x).ToList());
 }
Пример #2
0
 private void addAnnotations(AnnotationsParseNode source,
                             AnnotationsNode dest)
 {
     if (source != null)
     {
         dest.AddAnnotations(from x in source.Annotations
                             select x.Visit(this));
     }
 }
Пример #3
0
 public XmlElement Visit(AnnotationsNode n)
 {
     throw new NotImplementedException();
 }