示例#1
0
 private static void writeElementWithAttrs(XhtmlWriter w, string name)
 {
     w.WriteStartElement(name, XHTML_NAMESPACE);
     w.WriteAttributeString("foo", "bar");
     w.WriteEndElement();
 }