Project
ReSharper
Priority
Major
Type
Bug
Fix versions
No Fix versions
State
Open
Assignee
Evgeny Pasynkov
Subsystem
PSI
Affected versions
No Affected versions
Fixed in build
No Fixed in build
  • Created by   Alexander Zverev
    3 years ago (05 Feb 2009 21:12)
  • Updated by   Jura Gorohovsky
    7 months ago (08 Jul 2011 01:14)
  • Jira: RSRP-94481
    (history, comments)
 
RSRP-94481 Add support of System.Runtime.CompilerServices.IndexerNameAttribute
0
Issue is visible to: All Users
  The issue is visible to the selected user group only
Ex:

Public Class B
  Public Function Bar (ByVal a As A) As Object
    Dim x as Integer = a.Foo(1, 2, 3)  ''' Should be resolved
  End Function
End Class


using System;
using System.Runtime.CompilerServices;

public class A
{
  [IndexerName("Foo")]
  public int this[int integer, int i, int integer1]
  {
    get { throw new NotImplementedException(); }
    set { throw new NotImplementedException(); }
  }
}


NB: rename refactoring
Comments (2)
 
History
 
Linked Issues (?)
 
TeamCity Changes (0)
 
Alexander Zverev
  Alexander Zverev
05 Feb 2009 21:13
3 years ago
NB: restore test CreatePropertyFromUsageToCSharpExecuteTest
Alexander Zverev
  Alexander Zverev
05 Feb 2009 21:14
3 years ago
NB: restore test CreatePropertyFromUsageToCSharpExecuteTest