If you check the stack trace of the exception you get it will pinpoint the exact row where the error occurred.
You could also set a breakpoint on this line:
cmbUniversity.DataSource = ObjUtility.BindUniversity(StaticInfo.Center_Code).ToList();
Then use the Step Into (F11) function in the debugger to enter the method
BindUniversity
.
Then use Step Over (F10) and debug the method line by line.
By doing this you can most likely find and correct the error yourself.