Resharpers analysis flags the 'base.' in the following code segment as redundant qualifier but removing 'base.' results in an infinite loop.
public class Y : X
{
public string GetString(string name, params object[] objects)
{
string s = *base.*GetString(name); // without base. --> infinite loop
...
}
}
But still:
ReSharper is great!
Description
Resharpers analysis flags the 'base.' in the following code segment as redundant qualifier but removing 'base.' results in an infinite loop.
public class Y : X
{
public string GetString(string name, params object[] objects)
{
string s = *base.*GetString(name); // without base. --> infinite loop
...
}
}