interface - C# - Being unable to implement "INotifyDataErrorInfo" -
i have c# class.
class myclass: anotherclass, inotifydataerrorinfo { .................. } i need implement "inotifydataerrorinfo" interface too. comes in red colour , not identify namespace of interface. have added "using system.componentmodel;" too. not work.
anyone knows why ?
inotifydataerrorinfo in namespace system.componentmodel in assembly system. make sure have using system.componentmodel; in source code , project (.csproj) references system.dll.

Comments
Post a Comment