I\'m attempting to check for the existence of a node using the following .NET code:
xmlDocument.SelectSingleNode( String.Format(\"//ErrorTable/Projec
Try:
Node node = xmlDocument.SelectSingleNode(String.Format("//ErrorTable/ProjectName = '{0}'", projectName)); if (node != null) { // and so on }
Edit: silly error