Code for adding to IEnumerable

后端 未结 7 1246
日久生厌
日久生厌 2020-12-17 08:42

I have an enumerator like this

IEnumerable page;

How can I add a page (eg: D:\\newfile.txt) to it

7条回答
  •  长情又很酷
    2020-12-17 09:19

    IEnumerable does not contain a way to modify the collection.

    You will need to implement either ICollection or IList as these contain an Add and Remove functions.

提交回复
热议问题