リフレクションを使用して、プロジェクトのクラス構造でツリービューをロードしています。クラスの各メンバーには、カスタム属性が割り当てられています。
を使用してクラスの属性を取得するのに問題はありませんが、MemberInfo.GetCustomAttributes()
クラスメンバーがカスタムクラスであり、カスタム属性を返すためにそれ自体を解析する必要がある場合に解決する方法が必要です。
これまでのところ、私のコードは次のとおりです。
MemberInfo[] membersInfo = typeof(Project).GetProperties();
foreach (MemberInfo memberInfo in membersInfo)
{
foreach (object attribute in memberInfo.GetCustomAttributes(true))
{
// Get the custom attribute of the class and store on the treeview
if (attribute is ReportAttribute)
{
if (((ReportAttribute)attribute).FriendlyName.Length > 0)
{
treeItem.Items.Add(new TreeViewItem() { Header = ((ReportAttribute)attribute).FriendlyName });
}
}
// PROBLEM HERE : I need to work out if the object is a specific type
// and then use reflection to get the structure and attributes.
}
}
適切に処理できるように、MemberInfo インスタンスのターゲット型を取得する簡単な方法はありますか? 明らかな何かが欠けているように感じますが、すぐにぐるぐる回っています。