У меня есть следующий метод, с которым я столкнулся в обзоре кода. Внутри петли Решарпер говорит мне, что if (narrativefound == false)
неверно, потому что narrativeFound
всегда верно. Я не думаю, что это так, потому что для того, чтобы установить narrativeFound
в true, он должен сначала пройти сравнение условной строки, так как же это может быть всегда? Я что-то пропустил? Это ошибка в Resharper или в нашем коде?
public Chassis GetChassisForElcomp(SPPA.Domain.ChassisData.Chassis asMaintained, SPPA.Domain.ChassisData.Chassis newChassis)
{
Chassis c = asMaintained;
List<Narrative> newNarrativeList = new List<Narrative>();
foreach (Narrative newNarrative in newChassis.Narratives)
{
bool narrativefound = false;
foreach (Narrative orig in asMaintained.Narratives)
{
if (string.Compare(orig.PCode, newNarrative.PCode) ==0 )
{
narrativefound = true;
if (newNarrative.NarrativeValue.Trim().Length != 0)
{
orig.NarrativeValue = newNarrative.NarrativeValue;
newNarrativeList.Add(orig);
}
break;
}
if (narrativefound == false)
{
newNarrativeList.Add(newNarrative);
}
}
}
c.SalesCodes = newChassis.SalesCodes;
c.Narratives = newNarrativeList;
return c;
}