SerializationHelper<T> Class

/// Helper object that implements serialization separately from the string or stream I/O ///
Public Class SerializationHelper(Of  _ 
T As {Class, New})
This language is not supported or no code example is available.
public class SerializationHelper<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 SerializationHelper
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 SerializationHelper(CSVSettings, char[], Dictionary<TypeInt32>) /// Constructs a serialization helper object separate from I/O ///
Top
Methods
 
Name Description
Public method Serialize(T) /// Serialize a single row for the CSV file ///
Public method SerializeHeader() /// Serialize the header for the CSV file ///
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