SPWeb web = SPContext.Current.Web;
SPList list = web.Lists["MyList"];
SPListItem item = list.Items[0];
item["Title"] = TextBox_Name.Text;
item.SystemUpdate(false);
list.Update();
I have written this code that works well, but I have more columns and text that I want to update how can i solve this?

