Reporter | Drew Noakes (drewnoakes) |
---|---|
Created | Jul 6, 2009 5:32:24 PM |
Updated | Mar 27, 2012 5:03:10 PM |
Priority | Normal |
Type | Bug |
Fix versions | 7.0 |
State | Open |
Assignee | Alexey Kuptsov (alexey.kuptsov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
R# highlighted the unknown symbol IsLoading in a usage such as this:
The CA create property creates this in a sealed class:
Of course it is a little strange to produce a protected member in a sealed class, as R# correctly points out after creating it.
Furthermore, choosing 'Create _isLoading as a backing field' creates this:
...even though my coding style preferences would create this (and does, if I reformat)...
IsLoading = true;
The CA create property creates this in a sealed class:
protected bool IsLoading { }
Of course it is a little strange to produce a protected member in a sealed class, as R# correctly points out after creating it.
Furthermore, choosing 'Create _isLoading as a backing field' creates this:
protected bool IsLoading { get { return _isLoading; } set { _isLoading = value; } }
...even though my coding style preferences would create this (and does, if I reformat)...
protected bool IsLoading { get { return _isLoading; } set { _isLoading = value; } }