> [MD]: Warning: Class does not implement interface method in this
> module (class:0
> x02000014; interface:0x060000d0; method:0x00360078). [token:
> 0x09000017]
FWIW, peverify generates this warning for the quite harmless scenario
that a class implements an interface method not by itself but via its
base class.
E.g.:
interface IFace
{
void Add (int i);
}
class Class : List<int>, IFace
{
}
=> "[MD]: Warning: Class does not implement interface method in this
module (class:0x02000003; interface:0x02000002; method:0x06000001).
[token:0x09000001]
All Classes and Methods in ConsoleApplication15.exe Verified."
I haven't looked it up in the ECMA specification yet, but I'm quite
sure this is legal and verifiable. (The message generated by peverify
is also a warning, not an error.)
Regards,
Fabian
--
--
mono-cecil