History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-51580
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Sergey Shkredov
Reporter: Serge Baltic
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

Refac::VB::IntroduceVar: Must Treat Method Calls With And Without Parens As the Same Thing

Created: 21 Oct 07 23:10   Updated: 21 Feb 08 18:06
Component/s: Refactorings - Inline Variable
Fix Version/s: Future Versions
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown


 Description  « Hide
Dim chars1 As Char() = "voodoo".ToCharArray
Dim chars2 As Char() = "voodoo".ToCharArray()

Introduce variable from "voodoo".ToCharArray.

Dim array As Char() = "voodoo".ToCharArray
Dim chars1 As Char() = array
Dim chars2 As Char() = array()

Should be:

Dim array As Char() = "voodoo".ToCharArray
Dim chars1 As Char() = array
Dim chars2 As Char() = array


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.