hey just wondering if you can make an method that you input a string and convert it in the method and return a int?
something like
public string[] ConvertString(string[] Cards)
{
int[] intCards = new int[52];
for (int a = 0; a <= 51; a++)
{
int.TryParse(Cards[a], out intCards[a]);
}
return intCards;
}
thank you for your replies