了InterfaceA包含GetName方法
接口層次結構例如C#
InterfaceB實現了接口A和包含的getStatus方法
foreach(InterfaceA item in tempList.getList()){
if(item is Interface B)
rootNode = new TreeNode(item.GetName);
rootNode.Tag = item
childNode = new TreeNode(item.GetStatus) <--**is this possible>?? or is there any solution on getting instance with child interface from the parent?**
childNode.Tag = item
}
你的問題很難理解。請花一些時間讓它更清晰可讀。 –