I have an enumerator like this
IEnumerable page;
How can I add a page (eg: D:\\newfile.txt) to it
IEnumerable does not contain a way to modify the collection.
IEnumerable
You will need to implement either ICollection or IList as these contain an Add and Remove functions.
ICollection
IList