Language-Integrated Query (LINQ) is the name for a set of technologies based on the integration of query capabilities directly into the C# language (also in Visual Basic and potentially any other .NET language).
- With LINQ, a query is now a first-class language construct, just like classes, methods, events and so on.
- Some benchmark on simple use cases tend to show that LINQ to Objects performance has a large overhead compared to normal operation.


Sections