Get this code, set field prefix to "_" and try to rename 'line' field to '_line' to fix naming convention. It suggests to change 'Line' property to '_line' (capitalizes underscore?), gets conflict (which is incorrectly displayed) and finaly fails.
class Test
{
int line = 1;
publicint Line
{
get { return line; }
}
}
Description
Get this code, set field prefix to "_" and try to rename 'line' field to '_line' to fix naming convention. It suggests to change 'Line' property to '_line' (capitalizes underscore?), gets conflict (which is incorrectly displayed) and finaly fails.
class Test
{
int line = 1;
publicint Line
{
get { return line; }
}
}