Exemplo n.º 1
0
    static void Main(string[] args)
    {
        DocumentReader reader = new DocumentReader(new Uri("http://bbc.co.uk"));

        reader.PrintPageData();

        DocumentReader readerClone = reader.Clone() as DocumentReader;

        readerClone.PrintPageData();

        Console.ReadKey();
    }
Exemplo n.º 2
0
    static void Main(string[] args)
    {
        DocumentReader reader = new DocumentReader(new Uri("http://bbc.co.uk"));
        reader.PrintPageData();

        DocumentReader readerClone = reader.Clone() as DocumentReader;
        readerClone.PrintPageData();

        Console.ReadKey();
    }