SerializerTDeserialize Method (String) |
Deserializes a CSV 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(
string filePath
)
Public Function Deserialize (
filePath As String
) As ICollection(Of T)
public:
ICollection<T>^ Deserialize(
String^ filePath
)
member Deserialize :
filePath : string -> ICollection<'T>
Parameters
- filePath
- Type: SystemString
File path to csv file.
Return Value
Type:
ICollectionTList with objects.
See Also