How do you convert XmlReader to XmlTextReader?
Code Snippet:
XmlTextReader reader = XmlTextReader.Create(pomfile.FullName);
Here's the Build error I got:
Cannot implicitly convert type 'System.Xml.XmlReader' to 'System.Xml.XmlTextReader'. An
explicit conversion exists(are you missing a cast?).
pomfile is of type FileInfo