Note
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
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.