无法让 VS 智能感知找到 CommaDelimitedStringCollection

Can't get VS intellisense to find CommaDelimitedStringCollection

VS2015 CE 正在努力让 IntelliSense (C#) 在主题中显示集合。

这是我的 "using" 列表:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Configuration;
using System.Collections.Specialized;
using createsend_dotnet;

您会认为它应该在某个地方找到它,不是吗? :) 显然事实并非如此。在有人告诉我这是错误的之前 这样做的方法,相信我,完全没问题。我在这里试图做的是获得一些以逗号分隔的权限,以传递给 OAUTH API 调用。 因此,我只需要一行,class 就完美了。

您必须添加对 System.configuration 的引用。我相信某些名称空间的这种行为与名称空间被拆分成几个 dll 有关。