| Namespace: | Sirenix.Serialization | 
| Assembly: | Sirenix.Serialization | 
public class ListFormatter<T> : BaseFormatter<List<T>>, IFormatter<List<T>>, IFormatterThe element type of the formatted list.
public ListFormatter()protected override void DeserializeImplementation(ref List<T> value, IDataReader reader)| System.Collections.Generic.List<T> | value | The uninitialized value to serialize into. This value will have been created earlier using GetUninitializedObject(). | 
| Sirenix.Serialization.IDataReader | reader | The reader to deserialize with. | 
protected override List<T> GetUninitializedObject()| System.Collections.Generic.List<T> | A null value. | 
protected override void SerializeImplementation(ref List<T> value, IDataWriter writer)| System.Collections.Generic.List<T> | value | The value to serialize. | 
| Sirenix.Serialization.IDataWriter | writer | The writer to serialize with. |