NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataRowView.Equals

Gets a value indicating whether the current DataRowView is identical to the specified object.

[Visual Basic]
Overrides Public Function Equals( _
   ByVal other As Object _
) As Boolean
[C#]
public override bool Equals(
   object other
);
[C++]
public: override bool Equals(
   Object* other
);
[JScript]
public override function Equals(
   other : Object
) : Boolean;

Parameters

other
An Object to be compared.

Return Value

true, if object is a DataRowView and it returns the same row as the current DataRowView; otherwise, false.

Example [Visual Basic]

[Visual Basic]

Private Sub TestRowView()
   Dim drv As DataRowView

See Also

DataRowView Class | DataRowView Members | System.Data Namespace