InterviewSolution
Saved Bookmarks
| 1. |
Which Interface Implements The Standard Query Operators In Linq? |
|
Answer» The STANDARD QUERY operators implement the IENUMERABLE<T> or the IQueryable<T> interface in C# and the IEnumerable(Of T) or the IQueryable(Of T) interface in Visual BASIC. The standard query operators implement the IEnumerable<T> or the IQueryable<T> interface in C# and the IEnumerable(Of T) or the IQueryable(Of T) interface in Visual Basic. |
|