Asp.Net XML操作基类(24) { //判断父节点是否为指定节点 if (element.Name == FatherElenetName) { //判断父节点属性的索引是否大于指定索引 if (element.Attributes.Count < AttributeIndex) return null; //判断父节点的属性值是否等于指定属性 if (element.Attributes[AttributeIndex].Value == AttributeName) { XmlNodeList xx = element.ChildNodes; if (xx.Count > 0) { for (int i = 0; i < ArrayLength & i < xx.Count; i++)