InterfaceA には GetName メソッドが含まれています
InterfaceB は Interface 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
}