Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

FixedString32Bytes.operator ==

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static bool operator ==(ref FixedString32Bytes a, ref FixedString32Bytes b);

Parameters

Parameter Description
a A FixedString32Bytes to compare for equality.
b A FixedString32Bytes to compare for equality.

Returns

bool True if the two strings are equal.

Description

Returns true if a FixedString32Bytes and another string are equal.

Two strings are equal if they have equal length and all their characters match.


public static bool operator ==(ref FixedString32Bytes a, ref FixedString64Bytes b);

Parameters

Parameter Description
a A FixedString32Bytes to compare for equality.
b A FixedString64Bytes to compare for equality.

Returns

bool True if the two strings are equal.

Description

Returns true if a FixedString32Bytes and another string are equal.

Two strings are equal if they have equal length and all their characters match.


public static bool operator ==(ref FixedString32Bytes a, ref FixedString128Bytes b);

Parameters

Parameter Description
a A FixedString32Bytes to compare for equality.
b A FixedString128Bytes to compare for equality.

Returns

bool True if the two strings are equal.

Description

Returns true if a FixedString32Bytes and another string are equal.

Two strings are equal if they have equal length and all their characters match.


public static bool operator ==(ref FixedString32Bytes a, ref FixedString512Bytes b);

Parameters

Parameter Description
a A FixedString32Bytes to compare for equality.
b A FixedString512Bytes to compare for equality.

Returns

bool True if the two strings are equal.

Description

Returns true if a FixedString32Bytes and another string are equal.

Two strings are equal if they have equal length and all their characters match.


public static bool operator ==(ref FixedString32Bytes a, ref FixedString4096Bytes b);

Parameters

Parameter Description
a A FixedString32Bytes to compare for equality.
b A FixedString4096Bytes to compare for equality.

Returns

bool True if the two strings are equal.

Description

Returns true if a FixedString32Bytes and another string are equal.

Two strings are equal if they have equal length and all their characters match.


Parameters

Parameter Description
a A FixedString32Bytes to compare for equality.
b A String to compare for equality.

Returns

void True if the two strings are equal.

Description

Returns true if a FixedString32Bytes and another string are equal.

Two strings are equal if they have equal length and all their characters match.