Reputation: 13877
System.Collections.ObjectModel
is included. Visual studio 2012 still says Type or namespace name 'ObservableCollection' could not be found.
Similar to this question
Code:
class ObservableClass : ObservableCollection<OtherClass>
{
}
EDIT: This is .NET Framework 3.5 and is a console application
Upvotes: 2
Views: 5456
Reputation: 292465
You're probably missing an assembly reference... depending on which framework you are targeting, this class might be found:
Upvotes: 7