op_Inequality

operator !=

Determines whether two FormatFamilyBase instances are not equal.

public static bool operator !=(FormatFamilyBase first, FormatFamilyBase second)
Parameter Type Description
first FormatFamilyBase The first FormatFamilyBase instance to compare.
second FormatFamilyBase The second FormatFamilyBase instance to compare.

Return Value

true if the two FormatFamilyBase instances are not equal; otherwise, false.

See Also


operator !=

Determines whether a FormatFamilyBase instance is not equal to a specified string name.

public static bool operator !=(FormatFamilyBase first, string name)
Parameter Type Description
first FormatFamilyBase The FormatFamilyBase instance to compare.
name String The string name to compare with the FormatFamilyBase instance.

Return Value

true if the FormatFamilyBase instance’s name is not equal to the specified string name; otherwise, false.

See Also