Project
ReSharper
Priority
Normal
Type
Bug
Fix versions
6.0 EAP
State
Fixed
Assignee
Sergey Coox
Subsystem
Parameter Info
Affected versions
No Affected versions
Fixed in build
5.0.1654.51  
  • Created by   Vladimir Reshetnikov
    4 years ago (03 Mar 2007 21:15)
  • Updated by   Sergey Coox
    22 months ago (01 Apr 2010 21:24)
  • Jira: RSRP-36610
    (history, comments)
 
RSRP-36610 ReSharper shows wrong 'params' modifer for BeginInvoke method
0
Issue is visible to: All Users
  The issue is visible to the selected user group only
delegate void F(params object[] o);
// ....
F f = ...;
f.BeginInvoke() 


Resharper shows signature: BeginInvoke(params object[] o, AsyncCallback callback, object state).
'params' modifier is wrong.
Should be: BeginInvoke(object[] o, AsyncCallback callback, object state).
Comments (1)
 
History
 
Linked Issues (?)
 
TeamCity Changes (1)
 
Vladimir Reshetnikov
  Vladimir Reshetnikov
08 Mar 2007 17:39
4 years ago
If the delegate is declared in a referenced assembly, ReSharper shows correct signature.
If the delegate is declared in the current project (not yet compiled), ReSharper shows wrong 'params' modifer.