SerializerTDeserialize Method (Stream) |
Deserializes CSV data to a list of objects using a default encoding of UTF-8.
Namespace:
Enkoni.Framework.Serialization
Assembly:
Enkoni.Framework.Serialization (in Enkoni.Framework.Serialization.dll) Version: 1.3.0.1
Syntaxpublic ICollection<T> Deserialize(
Stream stream
)
Public Function Deserialize (
stream As Stream
) As ICollection(Of T)
public:
ICollection<T>^ Deserialize(
Stream^ stream
)
member Deserialize :
stream : Stream -> ICollection<'T>
Parameters
- stream
- Type: System.IOStream
The stream that contains the csv data.
Return Value
Type:
ICollectionTList with objects.
See Also