Reply To: Sorry if I ask a lot of questions, I just really find this stuff interesting and google is only somewhat helpful. Okay so …

Forum Archive Sorry if I ask a lot of questions, I just really find this stuff interesting and google is only somewhat helpful. Okay so … Reply To: Sorry if I ask a lot of questions, I just really find this stuff interesting and google is only somewhat helpful. Okay so …

#25031
Jonathan Gonzalez
Participant

    We used ToString because we need to “convert” the int types to a string format to be displayed. Both the currentAmmo and totalAmmo are both int types. You can also get around using “ToString” if you combine the int with some sort of text. So if I used (“Ammo is ” + currentAmmo) it wouldn’t require me to use “ToString” since it’s a combination of text and numbers.