using System; using System.Reflection; namespace A { interface IObjectWithId { TId Id { get; } } interface IEntityBase : IObjectWithId
I got this error when there were two implementations for an one interface method.