Haluk
0
Q:

convert ienumerable to list

using Linq;

IEnumerable<int> enumerable = Enumerable.Range(1, 300);
List<int> asList = enumerable.ToList();
2
List<object> list = enumerable.ToList();
1
List<Book> list = new List<Book>();
return list.AsEnumerable();
0

New to Communities?

Join the community