One place I often see new developers get stuck when developing with the SharePoint Object Model is trying to get information from a document library or list field
The place they get stuck is they write
string smyField = SPListItem.Fields[“myField”].ToString();
This will return the name of the column/field NOT the value within it
The trick is to write it like this
string smyField = SPListItem[“myField”].ToString();