views:

110

answers:

1

Hello.

I have an SPListItem object. Can I add a field to store some kind of object like ArrayList or Dictionary, or whatever?

Thank you.

+2  A: 

You can use SPListItem.Properties to store custom information which does not belong to a specific SPField. Dont forget to call Update()/SystemUpdate() after setting a property.

JMD