我有一个叫做实体的基类。然后我有两个子类标签和继承自实体的属性。现在我想要一个存储实体列表的字典。但我无法让它工作。是否错误地进行了继承?
Dictionary<string, List<Entity>> baseDict = new Dictionary<string, List<Entity>>();
List<Tag> tags = new List<Tag>();
tags.Add(new Tag("2012"));
tags.Add(new Tag("hello"));
tags.Add(new Tag("lego"));
List<Properties> properties = new List<Properties>();
properties.Add(new Properties("Year"));
properties.Add(new Properties("Phrase"));
properties.Add(new Properties("Type"));
baseDict.Add("Tags", tags);
baseDict.Add("Properties", properties);