help
Root Question Message
Node
here, are you doing linked list not List<T>
?// public void SpecMinMax() //10
{
Node<Party> temp = Partylist;
Party minmax = new Party("minmax");
while (temp != null)
{
minmax.AddChar(temp.GetValue().FindStrongestChar());
temp = temp.GetNext();
}
temp = new Node<Party>(minmax, temp);
}
temp
is always null after loopPartylist = new Node<Party>(minmax, Partylist);