SKSize.Inequality(SKSize, SKSize) Operator

Definition

Tests whether two SKSize structures are different.

public static bool operator != (SkiaSharp.SKSize sz1, SkiaSharp.SKSize sz2);
public static bool operator != (SkiaSharp.SKSize left, SkiaSharp.SKSize right);

Parameters

sz1left
SKSize

The SKSize structure that is to the left of the inequality operator.

sz2right
SKSize

The SKSize structure that is to the right of the inequality operator.

Returns

This operator returns true if either of the Width and Height properties of the two SKSize structures are unequal; otherwise false.

Applies to