SyntaxFix
Write A Post
Hire A Developer
Questions
IEnumerable<Book> _Book_IE; List<Book> _Book_List;
If it's the generic variant:
_Book_IE = _Book_List;
If you want to convert to the non-generic one:
IEnumerable ie = (IEnumerable)_Book_List;