Reporter | Julius Kunze (Blink) |
---|---|
Created | Feb 14, 2012 7:38:20 PM |
Updated | Feb 14, 2012 7:38:20 PM |
Priority | Normal |
Type | Feature |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Unassigned |
Subsystem | Language - VB.NET |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
When you extract methods with parameters with R# in VB, ByVal is added automatically. It would be fine if there were an option in R# so that this qualifier is not automatically generated.
Example:
Generate
instead of
when the desired "Do not generate ByVal qualifiers" option is on.
Example:
Generate
Private Function Test(s as String)
instead of
Private Function Test(ByVal s as String)
when the desired "Do not generate ByVal qualifiers" option is on.