public void InsertValue2At(ValueType2 newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); } }
public XmlNode AddValue2(ValueType2 newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Element, "", "Value", newValue.ToString())); } return(null); }
public void ReplaceValue2At(ValueType2 newValue, int index) { ReplaceDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); }
public void AddValue2(ValueType2 newValue) { AppendDomChild(NodeType.Element, "", "Value", newValue.ToString()); }
public void InsertValue2At(ValueType2 newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); }
public XmlNode AddValue2(ValueType2 newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Element, "", "Value", newValue.ToString()); return null; }
public void InsertValue2At(ValueType2 newValue, int index) { InsertDomChildAt(NodeType.Element, "", "Value", index, newValue.ToString()); }