vanillathunder722
Active Member
my title is the question lol
ah spelling mistake, i meant to an int array
ah spelling mistake, i meant to an int array
South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
string[] split = mail.Split(new char[] { '\n' });
public int[] new_list(string[] split)
{
int[] list_new = new int[split.Length];
for (int i = 0; i < split.Length; i++)
{
list_new[i] = Convert.ToInt32(split[i]);
}
return list_new;
}