Changeset 1319 for branches/New Persistence Exploration
- Timestamp:
- 03/09/09 16:35:05 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/New Persistence Exploration/Persistence/Persistence/CompoundSerializers.cs
r1316 r1319 37 37 38 38 public class ArraySerializer : ICompoundSerializer { 39 public bool CanSerialize(Type type) { 40 return type.IsArray ;39 public bool CanSerialize(Type type) { 40 return type.IsArray || type == typeof(Array); 41 41 } 42 42 public IEnumerable Serialize(object array) {
Note: See TracChangeset
for help on using the changeset viewer.