方法 : リフレクションを使用してアセンブリのメタデータを照会する (LINQ)
更新 : 2007 年 11 月
次の例では、LINQ でリフレクションを使用して、指定した検索条件に一致するメソッドについてのメタデータを取得する方法を示します。この例のクエリでは、配列などの列挙可能な型を返すすべてのメソッドの名前をアセンブリ内で検索します。
使用例
Imports System.Reflection
Imports System.IO
Imports System.Linq
Module Module1
Sub Main()
Dim file As String = "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll"
Dim asmbly As Assembly = Assembly.LoadFrom(file)
Dim pubTypesQuery = From type In asmbly.GetTypes() _
Where type.IsPublic _
From method In type.GetMethods() _
Where method.ReturnType.IsArray = True _
Let name = method.ToString() _
Let typeName = type.ToString() _
Group name By typeName Into methodNames = Group
Console.WriteLine("Getting ready to iterate")
For Each item In pubTypesQuery
Console.WriteLine(item.methodNames)
For Each type In item.methodNames
Console.WriteLine(" " & type)
Next
Next
Console.ReadKey()
End Sub
End Module
using System.Reflection;
using System.IO;
namespace LINQReflection
{
class ReflectionHowTO
{
static void Main(string[] args)
{
Assembly assembly = Assembly.Load("System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken= b77a5c561934e089");
var pubTypesQuery = from type in assembly.GetTypes()
where type.IsPublic
from method in type.GetMethods()
where method.ReturnType.IsArray == true
|| ( method.ReturnType.GetInterface(
typeof(System.Collections.Generic.IEnumerable<>).FullName ) != null
&& method.ReturnType.FullName != "System.String" )
group method.ToString() by type.ToString();
foreach (var groupOfMethods in pubTypesQuery)
{
Console.WriteLine("Type: {0}", groupOfMethods.Key);
foreach (var method in groupOfMethods)
{
Console.WriteLine(" {0}", method);
}
}
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
}
この例では、GetTypes メソッドを使用して、指定したアセンブリ内の型の配列を返します。パブリック型のみが返されるように、where フィルタを適用します。パブリック型ごとに、GetMethods 呼び出しから返される MethodInfo 配列を使用してサブクエリが生成されます。これらの結果はフィルタ処理され、戻り値の型が配列か、または IEnumerable<T> を実装する型であるメソッドのみが返されます。最後に、型名をキーとして使用して、これらの結果がグループ化されます。
コードのコンパイル方法
.NET Framework Version 3.5 を対象とする Visual Studio プロジェクトを作成します。プロジェクトには、System.Core.dll への参照と、System.Linq 名前空間に対する using ディレクティブ (C#) または Imports ステートメント (Visual Basic) が既定で含まれます。C# プロジェクトでは、System.IO 名前空間に対する using ディレクティブを追加します。
このコードをプロジェクト内にコピーします。
F5 キーを押して、プログラムをコンパイルおよび実行します。
任意のキーを押して、コンソール ウィンドウを終了します。