Beispiel #1
0
 public void InsertNameAt(NameType2 newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "Name", index, newValue.ToString());
 }
Beispiel #2
0
 public XmlNode AddName(NameType2 newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "Name", newValue.ToString());
     return null;
 }