CSV.AppendCSVHeader<T> Method

/// Add a CSV Header line to a StringBuilder for a specific type ///
<Extension()> _ 
Public Shared Sub AppendCSVHeader(Of _ 
T As {Class, new()})( _ 
ByVal sb As StringBuilder, _ 
Optional ByVal settings As CSVSettings = null _ 
)
This language is not supported or no code example is available.
public static void AppendCSVHeader<T>( 
this StringBuilder sb
CSVSettings settings = null 

where T : class, new()
This language is not supported or no code example is available.
[Extension()] 
generic<typename T> 
where T : ref class, new()
public:  
static void AppendCSVHeader( 
StringBuilder^ sb
CSVSettings^ settings 
)
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

Parameters

sb
StringBuilder

The StringBuilder to append data

settings
CSVSettings

The CSV settings to use when exporting this array (Default: CSV)

.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