How do I convert the integer for hp as its giving me this error message:
cannot convert from 'int' to 'string' [PokemonPocket]
if (menu == '1') {
// We, probably, want to add just once
Console.Write("Enter Pokemon Name:");
string name = Console.ReadLine();
Console.Write("Enter Pokemon HP: ");
int hp = Convert.ToInt32(Console.ReadLine());
Console.Write("Enter Pokemon EXP: ");
int exp = Convert.ToInt32(Console.ReadLine());
if (myDictionary.Count <= 0) {
myDictionary.Add("Pokemon Name: ", name);
myDictionary.Add("Pokemon HP: ", hp);