Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
Gets an array of objects that represent the columns and rows of data in the DataTableSurrogate object.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)
Syntax
'Declaration
Public Function GetRecords As Object()()
'Usage
Dim instance As DataTableSurrogate
Dim returnValue As Object()()
returnValue = instance.GetRecords()
public Object[][] GetRecords()
public:
array<array<Object^>^>^ GetRecords()
member GetRecords : unit -> Object[][]
public function GetRecords() : Object[][]
Return Value
Type: array<array<System.Object[][]
An array of objects that represent the columns and rows of data.
Remarks
The records are stored in a jagged array in the form object[columns][rows], such that a return value of object[0][10] represents the value of column 0 in row 10.