DeserializationHelper<T> Class

/// A helper object to deserialize a class based on CSV strings ///
Public Class DeserializationHelper(Of  _ 
T As {Class, New})
This language is not supported or no code example is available.
public class DeserializationHelper<T> 
where T : class, new()
This language is not supported or no code example is available.
generic<typename T> 
where T : ref class, gcnew() 
public ref class DeserializationHelper
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Type Parameters

T

Name Description
Public constructor DeserializationHelper(CSVSettings, string[]) /// Construct a new deserialization helper for a specific class containing all the information necessary /// for optimized deserialization ///
Top
Methods
 
Name Description
Public method Deserialize(string[], int, CSVSettings) /// Deserialize a single row using precomputed converters ///
Top

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition