Operator operator ==
operator ==(in NativeText, in FixedString32Bytes)
Returns true if two strings are equal.
Declaration
public static bool operator ==(in NativeText a, in FixedString32Bytes b)
Parameters
Type | Name | Description |
---|---|---|
Native |
a | A string to compare. |
Fixed |
b | Another string to compare. |
Returns
Type | Description |
---|---|
bool | True if the two strings are equal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator ==(in NativeText, in FixedString64Bytes)
Returns true if two strings are equal.
Declaration
public static bool operator ==(in NativeText a, in FixedString64Bytes b)
Parameters
Type | Name | Description |
---|---|---|
Native |
a | A string to compare. |
Fixed |
b | Another string to compare. |
Returns
Type | Description |
---|---|
bool | True if the two strings are equal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator ==(in NativeText, in FixedString128Bytes)
Returns true if two strings are equal.
Declaration
public static bool operator ==(in NativeText a, in FixedString128Bytes b)
Parameters
Type | Name | Description |
---|---|---|
Native |
a | A string to compare. |
Fixed |
b | Another string to compare. |
Returns
Type | Description |
---|---|
bool | True if the two strings are equal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator ==(in NativeText, in FixedString512Bytes)
Returns true if two strings are equal.
Declaration
public static bool operator ==(in NativeText a, in FixedString512Bytes b)
Parameters
Type | Name | Description |
---|---|---|
Native |
a | A string to compare. |
Fixed |
b | Another string to compare. |
Returns
Type | Description |
---|---|
bool | True if the two strings are equal. |
Remarks
Two strings are equal if they have equal length and all their characters match.
operator ==(in NativeText, in FixedString4096Bytes)
Returns true if two strings are equal.
Declaration
public static bool operator ==(in NativeText a, in FixedString4096Bytes b)
Parameters
Type | Name | Description |
---|---|---|
Native |
a | A string to compare. |
Fixed |
b | Another string to compare. |
Returns
Type | Description |
---|---|
bool | True if the two strings are equal. |
Remarks
Two strings are equal if they have equal length and all their characters match.