Hi Ryan,
I don't know what type of collection you are using but i can give you a general information on if it is a serialization related problem or not. Not all the collections can be serialized and deserialized via the workflow serializer. First of all for the DesignerSerializationVisibility.Content to work your collection should be of type IList or IDictionary and the property should be read-only (no setter).
For more information on serialization please see:
http://msdn2.microsoft.com/en-us/library/ms735923.aspx
http://msdn2.microsoft.com/en-us/library/ms171834.aspx
Additionally one alternative to your problem with serialization is to write your own custom serializer.
Hope this helps,
Elif
You might also try using ArrayList instead of whatever collection you have
|