Update the SharePoint List Item using C# Coding

  1. // Open your SPSite  
  2. using(SPSite oSite = new SPSite("Your Site Url")) {  
  3.     //Get a Root Web  
  4.     using(SPWeb oWeb = oSite.RootWeb) {  
  5.         //Get a Particular List  
  6.         SPList oList = oWeb.Lists["Your List name"];  
  7.         // Get the Item ID  
  8.         listItemId = 1;  
  9.         // Update the List item by ID  
  10.         SPListItem itemToUpdate = list.GetItemById(listItemId);  
  11.         itemToUpdate["Employee Name"] = "Adam Smith";  
  12.         itemToUpdate.Update();  
  13.     }  
  14. }  
Here I have update Employee name in 1st ID.