Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 827 Bytes

linq-and-reflection.md

File metadata and controls

18 lines (13 loc) · 827 Bytes
description title ms.date ms.assetid
Learn more about: LINQ and Reflection (Visual Basic)
LINQ and Reflection
07/20/2015
2548a731-0cd8-48de-8d48-664d1b7d7526

LINQ and Reflection (Visual Basic)

The .NET Framework class library reflection APIs can be used to examine the metadata in a .NET assembly and create collections of types, type members, parameters, and so on that are in that assembly. Because these collections support the generic IEnumerable interface, they can be queried by using LINQ.

This section contains the following topics:

How to: Query An Assembly's Metadata with Reflection (LINQ) (Visual Basic)
Shows how to use LINQ with reflection.

See also