- 
                Notifications
    You must be signed in to change notification settings 
- Fork 35
M_CodeJam_TableData_FixedWidthFormat_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,
	int[] widths,
	string indent = null
)VB
Public Shared Sub Print ( 
	writer As TextWriter,
	data As IEnumerable(Of String()),
	widths As Integer(),
	Optional indent As String = Nothing
)F#
static member Print : 
        writer : TextWriter * 
        data : IEnumerable<string[]> * 
        widths : int[] * 
        ?indent : string 
(* Defaults:
        let _indent = defaultArg indent null
*)
-> unit 
- writer
- Type: System.IO.TextWriter
 Instance of TextWriter to write to.
- data
- Type: System.Collections.Generic.IEnumerable(String[])
 Data to write.
- widths
- Type: System.Int32[]
 Array of column widths
- indent (Optional)
- Type: System.String
 The indent.