Priority
Show-stopper
Type
Bug 
State
Fixed 
Assignee
Eugene Pasynkov 
Subsystem
No subsystem 
Affected versions
Fixed in
Fixed in build
Next build 
Build
464
Fixed in build
500
  • Submitted by   Vladimir Reshetnikov
    2 years ago (17 Jun 2007 09:29)
  • Updated by Vladimir Reshetnikov
    2 years ago (20 Jun 2007 20:42)
  • Jira: RSRP-43478
    (history, comments)

RSRP-43478

'Find usages advanced' skips some usages in excplicit interface implementations

0
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();
    }
}


'Find usages advanced' skips some usages in excplicit interface implementations.


Issue was closed
Comments (0)
 
History (0)
 
Links
 
Issue has no comments