我有一个c#类。
class MyClass: AnotherClass, INotifyDataErrorInfo
{
..................
}
我也需要实现“INotifyDataErrorInfo”接口。但它有红色,并没有识别界面的命名空间。 我添加了“using System.ComponentModel;”太。 但它不起作用。
有谁知道为什么会这样?
答案 0 :(得分:1)
INotifyDataErrorInfo位于程序集System.ComponentModel
的名称空间System
中。确保源代码中包含using System.ComponentModel;
,项目(.csproj)引用System.dll
。