| Parameter | Description |
|---|---|
| a | The first identifier to compare. |
| b | The second identifier to compare. |
bool
true if the identifiers have different culture codes, ignoring case; otherwise, false.
Determines whether two identifiers have different culture codes.
The negation of the equality comparison; the comparison ignores case.
<para>Compare two identifiers with the inequality operator.</para>
using Unity.Localization;
namespace Unity.Localization.Samples { public class LocaleIdentifierInequalityOperatorExample { public bool Run(LocaleIdentifier a, LocaleIdentifier b) => a != b; } }