我最近使用XNA XML内容将数据保存在字典中
<Asset Type="System.Collections.Generic.Dictionary[System.String, Microsoft.Xna.Framework.Vector2]">
字典有效,但它不允许我保存重复的密钥。所以现在我想使用键值对列表。我尝试了以下方法:
<Asset Type="System.Collections.Generic.List[KeyValuePair[System.String, Microsoft.Xna.Framework.Vector2]]">
然而,这不起作用。有人知道如何正确地做到这一点吗?