T
T Gregory
Guest
Basically, instead of doing this...
for (int i = 0; i < MyList.Count; i++) {
MyList.MyMethod();
}
Is there a way to do this? (I know the following won't work but something along those lines.)
MyList.MyMethod();
Continue reading...
for (int i = 0; i < MyList.Count; i++) {
MyList.MyMethod();
}
Is there a way to do this? (I know the following won't work but something along those lines.)
MyList.MyMethod();
Continue reading...