debesh Answered 2 Years ago through
Quizzes
public static XmlNode GetBook(string strXMLFilePath, string strPublisherName, string strTitle)
{
XmlDocument xml = new XmlDocument();
// Validate input parameters for null or empty values
if (strXMLFilePath == null || strPublisherName...