///<summary>

///the name of the Tag xml node.

///</summary>

protected const string cTagXmlNodeName="Tag";

 

///<summary>

///Determines whether the specified node is a tag node

///</summary>

protected bool IsTagXmlNode(XmlNode node)

{

  if(node==node)

  {

    throw new ArgumentNullException("Node");

  }

  return node.Name==cTagXmlNodeName;

}

相关文章:

  • 2022-12-23
  • 2021-10-01
  • 2021-05-19
  • 2021-06-24
  • 2021-05-28
  • 2021-06-08
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2021-05-02
  • 2021-07-23
  • 2021-12-29
  • 2021-10-01
相关资源
相似解决方案