即使使用'System.Collections.ObjectModel'也找不到'ObservableCollection'

tnw*_*tnw 2 c# visual-studio visual-studio-2012

System.Collections.ObjectModel已经包括了.Visual Studio 2012仍然说Type or namespace name 'ObservableCollection' could not be found.

此问题类似

码:

class ObservableClass : ObservableCollection<OtherClass>
{
}
Run Code Online (Sandbox Code Playgroud)

编辑:这是.NET Framework 3.5,是一个控制台应用程序

Tho*_*que 6

你可能错过了一个程序集引用...根据你所针对的框架,可能会找到这个类:

  • 在WindowsBase.dll(.NET 3.x)中
  • 在System.dll(.NET 4.x)中
  • 在System.Windows.dll(Silverlight/Windows Phone 7)中
  • 在System.ObjectModel.dll(WinRT)中(包含在".NET for Windows Store应用程序"中)