Compares two MemSnapShot instances and returns true if they are equal.

Namespace:  SciTech.NetMemProfiler
Assembly:  MemProfiler2 (in MemProfiler2.dll)

Syntax

C#
public static bool operator ==(
	MemSnapShot x,
	MemSnapShot y
)
Visual Basic
Public Shared Operator = ( _
	x As MemSnapShot, _
	y As MemSnapShot _
) As Boolean
Visual C++
public:
static bool operator ==(
	MemSnapShot x, 
	MemSnapShot y
)

Parameters

x
Type: SciTech.NetMemProfiler..::..MemSnapShot
The first MemSnapShot to compare.
y
Type: SciTech.NetMemProfiler..::..MemSnapShot
The second MemSnapShot to compare.

Return Value

true if the two MemSnapShots are equal, false otherwise.

See Also