C# Class NetBase.Storage.Row

Stores data.
Show file Open project: buttonpusher/NetBase Class Usage Examples

Public Methods

Method Description
BinRead ( List columns, System br ) : void
BinWrite ( System bw ) : void
CopyData ( Row old, List newColumns ) : void

Generally used for creating new rows out of old ones, particularly when joining rows together

Row ( ITable t ) : System
ToString ( ) : string
this ( int index ) : object
this ( string name ) : object

Method Details

BinRead() public method

public BinRead ( List columns, System br ) : void
columns List
br System
return void

BinWrite() public method

public BinWrite ( System bw ) : void
bw System
return void

CopyData() public method

Generally used for creating new rows out of old ones, particularly when joining rows together
public CopyData ( Row old, List newColumns ) : void
old Row
newColumns List
return void

Row() public method

public Row ( ITable t ) : System
t ITable
return System

ToString() public method

public ToString ( ) : string
return string

this() public method

public this ( int index ) : object
index int
return object

this() public method

public this ( string name ) : object
name string
return object