Hi,
if I have code like this:
C#using DevExpress.Data;
IList IRelationList.GetDetailList(int index, int relationIndex)
{
return this[index].DetailList;
}
relationIndex is marked as unused, but there is no possibility for getting rid of this parameter, because method signature is enforced by interface.
Regards, Przemyslaw Wlodarczak
Proposed Solution:
Do not mark unused parameters as "dead code" if those parameters are forced by interface signature, at least for explicitly implemented members