Is there something in C# that lets me keep a .XML file (with its content and everything) in memory,

Posted by Sergio Tapia on Stack Overflow See other posts from Stack Overflow or by Sergio Tapia
Published on 2010-04-12T02:30:39Z Indexed on 2010/04/12 2:33 UTC
Read the original article Hit count: 390

Filed under:
|
|
|

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.
    }
}

Thanks!

© Stack Overflow or respective owner

Related posts about Xml

Related posts about c#