示例#1
0
        private string IdentifyNodeList(XmlNodeList nodeList) 
        {
            if (nodeList == null)
                return "<null>";
 
            return String.Format(TypeConverterHelper.InvariantEnglishUS, "{0} (hash={1} Count={2})",
                                    nodeList.GetType().Name, AvTrace.GetHashCodeHelper(nodeList), nodeList.Count); 
        }