Add a row to the table. This method is very inefficient for adding multiple rows and should be avoided if possible.


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

Syntax

Visual Basic (Declaration)
Public Overridable Sub AddRow( _ 
   ByVal row As Object() _ 
)
C#
public virtual void AddRow(
   object[] row
)
C++
public:
 virtual void AddRow(
   array<Object>^ row
)
J#
public virtual void AddRow(
   object[] row
)
JScript
public virtual  function AddRow(
   row : Object[]
)

Exceptions

Exception TypeCondition
TableException TableException Thrown when the new data is not of the same type as the data it replaces.

See Also