Reputation: 33
I've been working with the SharePoint object model and got that question.
Upvotes: 2
Views: 815
Reputation: 2212
aListItem["property"] is not correct It is aListItem["fieldName"]
So:
aListItem["property"]
will get the value of the field named "property"
and
aListitem.Properties["property"]
will get the value of the property "Property" (eg List)
Upvotes: 4