VintaSoft Barcode .NET SDK 15.1: Documentation for Web developer
Vintasoft.Imaging Namespace / Resolution Structure / Inequality(Resolution,Resolution) Operator
Syntax Requirements SeeAlso
In This Topic
    Inequality(Resolution,Resolution) Operator (Resolution)
    In This Topic
    Compares two Resolution structures. The result specifies whether the values of the Horizontal and Vertical properties of the two Resolution structures are unequal.
    Syntax
    'Declaration
    
    Public Operator <>( _
    ByVal left
    A Resolution to compare.
    As Resolution, _
    ByVal right
    A Resolution to compare.
    As Resolution _
    ) As Boolean
    public bool operator =(
    Resolution left,
    Resolution right
    )
    public: bool op_Inequality(
    Resolution left,
    Resolution right
    )
    public:
    bool operator =(
    Resolution left,
    Resolution right
    )

    Parameters

    left
    A Resolution to compare.
    right
    A Resolution to compare.

    Return Value

    True if two Resolution instances are not equal; false if two Resolution instances are equal.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7, .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5

    See Also