ILNumerics Ultimate VS

SizeEquality Operator (Size, Size)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
'Equal' operator on two instances of Size

[ILNumerics Core Module]

Namespace:  ILNumerics
Assembly:  ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static bool operator ==(
	Size s1,
	Size s2
)

Parameters

s1
Type: ILNumericsSize
The first size object.
s2
Type: ILNumericsSize
The second size object.

Return Value

Type: Boolean
True, if both instances have the same shape.
Remarks

The operator is an alias for
s1.Equals(s2)
.

If either one of s1 or s2 is null, the operator returns false.

[ILNumerics Core Module]

See Also

Reference