Click or drag to resize
NanoXLSX

AddressEquality Operator

Determines whether two Address instances are equal.

Namespace: NanoXLSX
Assembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.7+3223c8b99fcd3402b4ae016daa480abac16f8a9f
Syntax
C#
public static bool operator ==(
	Address address1,
	Address address2
)

Parameters

address1  Address
The first Address instance to compare.
address2  Address
The second Address instance to compare.

Return Value

Boolean
if the two Address instances are equal; otherwise, .
Remarks
This operator uses the Equals(Address) method to determine equality.
See Also