ArcFM Responder Mobile Developer Guide
AreSameRows Method






First DataRow.
Second DataRow.
Determines if two DataRows are the same.
Syntax
'Declaration
 
Public Shared Function AreSameRows( _
   ByVal firstRow As System.Data.DataRow, _
   ByVal secondRow As System.Data.DataRow _
) As System.Boolean
'Usage
 
Dim firstRow As System.Data.DataRow
Dim secondRow As System.Data.DataRow
Dim value As System.Boolean
 
value = DataSetConfig.AreSameRows(firstRow, secondRow)
public static System.bool AreSameRows( 
   System.Data.DataRow firstRow,
   System.Data.DataRow secondRow
)
public function AreSameRows( 
    firstRow: System.Data.DataRow;
    secondRow: System.Data.DataRow
): System.Boolean; static; 
public static function AreSameRows( 
   firstRow : System.Data.DataRow,
   secondRow : System.Data.DataRow
) : System.boolean;
public: static System.bool AreSameRows( 
   System.Data.DataRow* firstRow,
   System.Data.DataRow* secondRow
) 
public:
static System.bool AreSameRows( 
   System.Data.DataRow^ firstRow,
   System.Data.DataRow^ secondRow
) 

Parameters

firstRow
First DataRow.
secondRow
Second DataRow.

Return Value

True if the two DataRows are the same.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DataSetConfig Class
DataSetConfig Members

Send Feedback