これは私がやろうとしているダミーの例です:
var ass = Assembly.Load("Dummy.Class.FullName");
var yy =
from t in ass.GetTypes()
let attributes = t.GetCustomAttributes(typeof(MyTestAttribute), true)
where attributes != null && attributes.Length > 0
select new { Type = t, Attributes = attributes.Cast<MyTestAttribute>() };
foreach (var x in yy)
{
TestOpen<typeof(x.Type)>();
}
private void TestOpen<TEntity>() where TEntity : Entity, new()
{
}
クラス定義を取得してこの方法でジェネリックメソッドに渡すことができません。すべてを試しました。メソッドがコンパイル済みクラスを待機しているという特別な何かが欠けていると思います。リフレクションから、これを取得できません。正しいですか?
乾杯