|
Project
|
ReSharper
|
|
Priority
|
Major |
|
Type
|
Bug |
|
Fix versions
|
Mirabile Futurum |
|
State
|
Open |
|
Assignee
|
Sergey Shkredov |
|
Subsystem
|
Naming |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build |
namespace ConsoleApplication3 {
class Program {
private int a_b_c_d_e;
//The name of the property (ABCDE) that ReSharper selected for "Generate Property" removed all my underlines.
public int ABCDE {
get { return a_b_c_d_e; }
set { a_b_c_d_e=value; }
}
}
}