> 일반배열

string[] testList = new string[10];
testList[0] = "일";
testList[1] = "이";
foreach (string item in testList)
{
int index = Array.IndexOf( testList, item );
}

+ Recent posts