Click or drag to resize

ExtensionsRecursiveEqual Method

Tests for equality between two untyped objects, and if they are collections recursively checks for equality on each entry.

Namespace:  Couchbase.Lite.Util
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0469
Syntax
C#
public static bool RecursiveEqual(
	this Object left,
	Object right
)

Parameters

left
Type: SystemObject
The lefthand object to compare
right
Type: SystemObject
The righthand object to compare

Return Value

Type: Boolean
Whether or not the two objects are equal

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also