gpt4 book ai didi

c# - SortedList 未在 Systems.Collections.Generic 中使用 .NET 4.0 定义

转载 作者:行者123 更新时间:2023-11-30 17:56:06 25 4
gpt4 key购买 nike

我下载了一个使用 SortedList 通用版本的库,但是当我尝试编译它时,弹出以下错误:

The type or namespace name 'SortedList' does not exist in the namespace 'System.Collections.Generic' (are you missing an assembly reference?)

我尝试使用完整命名空间修复它,System.Collections.Generic.SortedList<string, string>但仍然没有运气,同样的错误。

我在 MSDN 中查找,它说 .NET 4.0(我当前使用的版本)支持 SortedList。

此外,我的项目引用了上述命名空间。

这是代码(错误重复多次,每次引用 SortedList):

public class Map
{
public SortedList<string, Tileset> Tilesets = new SortedList<string, Tileset>();
public SortedList<string, Layer> Layers = new SortedList<string, Layer>();
public SortedList<string, ObjectGroup> ObjectGroups = new SortedList<string, ObjectGroup>();
public SortedList<string, string> Properties = new SortedList<string, string>();
public int Width, Height;
public int TileWidth, TileHeight;
}

最佳答案

右键单击项目的引用并选择“添加引用”。选择“程序集”,然后在“系统”旁边打勾。单击“确定”,现在应该已修复。

关于c# - SortedList<TKey, TValue> 未在 Systems.Collections.Generic 中使用 .NET 4.0 定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14550245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com