Create a binary table from existing data in row order.


Namespace: nom.tam.fits
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal data As Object()() _ 
)
C#
public BinaryTable(
   object[][] data
)
C++
public:
 BinaryTable(
   array<array<Object>^>^ data
) sealed 
J#
public BinaryTable(
   object[][] data
)
JScript
public function BinaryTable(
   data : Object[][]
)

Parameters

data
The data used to initialize the binary table.

See Also