Does SPList.update also update changes made to SPListitems ?
Do i need to call SPListItem.update for each SPListItem ?
Like:
loop all SPListItems{
change it
call SPListItem.update
}
call SPlist.update
Or can i just do:
loop all SPListItems{
change it
}
call SPlist.update
?