Well,
Thanks for your massive amount of support ideas and encouragement.
This is what I did to solve my problem, which BTW figured out an hour after posting my original message...
int [,] intayToInt = new int[100000, 2];
char [] charTemp = new char[20];
string strTemp;
string strOne;
string strTwo;
char [] trimChar = {' '};
//Loading the array of integers from the array of strings
strTemp = strayFile[0];
for(int i = 0; strTemp != null; i++)
{
strTemp = strayFile[i];
if (strTemp != null)
{
//Operating first part of the string.
strOne = strTemp.Substring(0,10);
strOne = strOne.Trim(trimChar);
intayToInt[i,0] = Convert.ToInt32(strOne);
//Operating second part of the string.
strTwo = strTemp.Substring(10,10);
strTwo = strTwo.Trim(trimChar);
intayToInt[i,1] = Convert.ToInt32(strTwo);
}//end if
}//end of for
return intayToInt;
sdauggie...