I am doing ConfigurationSection in C # right now. I decided to take advantage of some C # 6 features using the name (PropertyName) instead of hard-coded strings.
However, I get a weird result from Resharper regarding a recursive call.
Here is an example:

I can understand why this might give this warning, since the property is referenced internally. However, I'm not sure if this is actually recursive.
Is there anything I should worry about in this call?
source
share