op_Equality

operator ==

Determines whether two FormatFamilyBase instances are 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 equal; otherwise, false.

See Also


operator ==

Determines whether a FormatFamilyBase instance is 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 equal to the specified string name; otherwise, false.

See Also