Is there something in C# that lets me keep a .XML file (with its content and everything) in memory,
- by Sergio Tapia
I'm going to be doing some webscraping and my plan is to have something like this:
public class Searcher
{
public void Search(string searchTerm)
{
}
private void Search(string term)
{
//Some HTMLAgilityPack Voodoo here
}
private void SaveResults()
{
//Actually save the results as .XML file.
}…