InterfaceA 包含 GetName 方法
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
}