| Priority |
Show-stopper |
| Type | Bug |
| State | Fixed |
| Assignee | Eugene Pasynkov |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
464
|
| Fixed in build |
500
|
RSRP-43478 |
'Find usages advanced' skips some usages in excplicit interface implementations |
|
|
using System;
public interface IComparableByValue<T>
{
int Compare(T x); // Try to find all usages
}
public class C : IComparableByValue<int>, IComparableByValue<long>
{
int IComparableByValue<int>.Compare(int x) // The only usage found
{
throw new NotImplementedException();
}
int IComparableByValue<long>.Compare(long x) // skipped
{
throw new NotImplementedException();
}
}