-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_TableData_CsvFormat_Print
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Prints full data table
Namespace: CodeJam.TableData
Assembly: CodeJam.Blocks (in CodeJam.Blocks.dll) Version: 2.0.0.0
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
- 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.