Hi
I am getting this error
Project.clsPrjDocument' does not implement interface member 'Project.intprjDocument.prjdocstatus
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vinoth RajPosted Jul 30, 2012, 7:42 AM
Karthik AgarwalPosted Nov 25, 2011, 8:24 AM
Karthik AgarwalPosted Nov 25, 2011, 4:24 AM
{
void SomeMethod(float f);
}
public class MyClass : IMyInterface
{
public void SomeMethod(double d)
{
}
}
if you see the above code, So here the class MyClass does not implemented the method SomeMethod(float). So the method SomeMethod(doubt) does not count, because the parameters does not match ( did you observed one if float and other if double !!) .
So this is the reason why one will get the error that Does not Implement the so and so error. so you have to Implement the method of Interface in the class.
Hope this helps.