Skip to content

M_CodeJam_TableData_CsvFormat_Print

Andrew Koryavchenko edited this page Jun 17, 2018 · 2 revisions

CsvFormat.Print Method

Prints full data table

Namespace: CodeJam.TableData
Assembly: CodeJam.Blocks (in CodeJam.Blocks.dll) Version: 2.0.0.0

Syntax

C#

public static void Print(
	TextWriter writer,
	IEnumerable<string[]> data,
	string indent = null,
	bool allowEscaping = true
)

VB

Public Shared Sub Print ( 
	writer As TextWriter,
	data As IEnumerable(Of String()),
	Optional indent As String = Nothing,
	Optional allowEscaping As Boolean = true
)

F#

static member Print : 
        writer : TextWriter * 
        data : IEnumerable<string[]> * 
        ?indent : string * 
        ?allowEscaping : bool 
(* Defaults:
        let _indent = defaultArg indent null
        let _allowEscaping = defaultArg allowEscaping true
*)
-> unit 

Parameters

 

writer
Type: System.IO.TextWriter
Instance of TextWriter to write to.
data
Type: System.Collections.Generic.IEnumerable(String[])
Data to write.
indent (Optional)
Type: System.String
The indent.
allowEscaping (Optional)
Type: System.Boolean
If true, allows values escaping.

See Also

Reference

CsvFormat Class
CodeJam.TableData Namespace

Clone this wiki locally