Enigma
Enigma
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
Thanks
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
So i dont really get what should i change
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
I see
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
and now once i use the action it only keeps the minmax party
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
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); Partylist = temp;
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
i changed my code to this
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
thanks
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
or something of the following
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
like Partylist = Partylist(Partylist,minmax)
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
Node<party> is a list of parties
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
node is the type of thing
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
wdym node
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
are u here?
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
the party is just not created
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
this are the properties of world
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
class World { private string name; private Node<Party> Partylist;
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
Partylist is simply the list off all parties
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
if u need any clarity with the code lmk
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
which concludes of the strongest character from each party
40 replies
CC#
Created by Enigma on 12/24/2022 in #help
❔ help with creating a list of objects from other lists
the goal of the action is to create a new party minmax
40 replies