Project
ReSharper
Priority
Critical
Type
Bug
Fix versions
2.5
State
Fixed
Assignee
Dmitry Lomov
Subsystem
PSI
Affected versions
No Affected versions
Fixed in build
No Fixed in build
  • Created by   Vladimir Reshetnikov
    5 years ago (04 Oct 2006 14:24)
  • Updated by   Olga Lobacheva
    18 months ago (14 Jul 2010 18:57)
  • Jira: RSRP-29316
    (history, comments)
 
RSRP-29316 Interfaces with different number of type parameters
0
Issue is visible to: All Users
  The issue is visible to the selected user group only
ReSharper does not resolve interfaces with the same name but different number of type parameters.

using System;

interface ICloneable<T>
{
    T Clone();
}

class Generic<T> : ICloneable, ICloneable<T>
{
    object ICloneable.Clone()
    {
        throw new NotImplementedException();
    }

    public T Clone()
    {
        throw new NotImplementedException();
    }
}



Issue was closed
Comments (0)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Issue has no comments