Reporter | Denis Abramov (sparky2708) |
---|---|
Created | Jan 11, 2012 2:27:05 AM |
Updated | Jan 11, 2012 2:27:05 AM |
Priority | Normal |
Type | Unspecified |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Unassigned |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
Suppose you have an ENUM:
Now let's say you are trying to call a method with the signature:
So you type:
As soon as you typed the ":" R# makes a replacement:
This isn't what I wanted. I wanted to type:
This is very annoying when it types the wrong thing.
Public Class ReportViewer Public Enum ReportType XML CSV TIFF PDF WEB WebArchive XLS RPT End Enum End Class
Now let's say you are trying to call a method with the signature:
Public Function Generate(ByVal outputPath As String, Optional ByVal reportType As ReportViewer.ReportType = ReportViewer.ReportType.PDF) As String ... End Function
So you type:
SomeObject.Generate(somePath, reportType:
As soon as you typed the ":" R# makes a replacement:
SomeObject.Generate(path, ReportViewer.ReportType.CSV:
This isn't what I wanted. I wanted to type:
SomeObject.Generate(path, reportType:=ReportViewer.ReportType.PDF)
This is very annoying when it types the wrong thing.