operator !=
Returns true if a FixedString64Bytes and another string are unequal.
Read time 2 minutesLast updated 9 days ago
Definition
- Type: Operator
- Namespace: Unity.Collections
- Assembly: UnityEngine.ManagedKernelModule
operator !=(FixedString64Bytes, FixedString32Bytes)
Returns true if a FixedString64Bytes and another string are unequal.
public static bool operator !=(in FixedString64Bytes a, in FixedString32Bytes b)
Parameters
A FixedString64Bytes to compare for inequality.
A FixedString32Bytes to compare for inequality.
Returns
Type | Description |
|---|---|
| bool | True if the two strings are unequal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator !=(FixedString64Bytes, FixedString64Bytes)
Returns true if a FixedString64Bytes and another string are unequal.
public static bool operator !=(in FixedString64Bytes a, in FixedString64Bytes b)
Parameters
A FixedString64Bytes to compare for inequality.
A FixedString64Bytes to compare for inequality.
Returns
Type | Description |
|---|---|
| bool | True if the two strings are unequal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator !=(FixedString64Bytes, FixedString128Bytes)
Returns true if a FixedString64Bytes and another string are unequal.
public static bool operator !=(in FixedString64Bytes a, in FixedString128Bytes b)
Parameters
A FixedString64Bytes to compare for inequality.
A FixedString128Bytes to compare for inequality.
Returns
Type | Description |
|---|---|
| bool | True if the two strings are unequal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator !=(FixedString64Bytes, FixedString512Bytes)
Returns true if a FixedString64Bytes and another string are unequal.
public static bool operator !=(in FixedString64Bytes a, in FixedString512Bytes b)
Parameters
A FixedString64Bytes to compare for inequality.
A FixedString512Bytes to compare for inequality.
Returns
Type | Description |
|---|---|
| bool | True if the two strings are unequal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator !=(FixedString64Bytes, FixedString4096Bytes)
Returns true if a FixedString64Bytes and another string are unequal.
public static bool operator !=(in FixedString64Bytes a, in FixedString4096Bytes b)
Parameters
A FixedString64Bytes to compare for inequality.
A FixedString4096Bytes to compare for inequality.
Returns
Type | Description |
|---|---|
| bool | True if the two strings are unequal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator !=(FixedString64Bytes, string)
Returns true if a FixedString64Bytes and another string are unequal.
[ExcludeFromBurstCompatTesting("Takes managed string")]public static bool operator !=(in FixedString64Bytes a, string b)
Parameters
A FixedString64Bytes to compare for inequality.
A FixedString32Bytes to compare for inequality.
Returns
Type | Description |
|---|---|
| bool | True if the two strings are unequal. |
Remarks
Two strings are equal if they have equal length and all their characters match.