public static int Count( ArrayList<Student> studentList )
{
int j = 0;
for( Student s : studentList )
{
j = j++;
}
return j;
}