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

FixedList4096Bytes<T0>.Equals

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

Declaration

public bool Equals(FixedList32Bytes<T> other);

Parameters

Parameter Description
other The list to compare for equality.

Returns

bool True if the two lists are equal.

Description

Returns true if this list and another list are equal.

Two lists are equal if their length and bytes are equal.


Declaration

public bool Equals(FixedList64Bytes<T> other);

Parameters

Parameter Description
other The list to compare for equality.

Returns

bool True if the two lists are equal.

Description

Returns true if this list and another list are equal.

Two lists are equal if their length and bytes are equal.


Declaration

public bool Equals(FixedList128Bytes<T> other);

Parameters

Parameter Description
other The list to compare for equality.

Returns

bool True if the two lists are equal.

Description

Returns true if this list and another list are equal.

Two lists are equal if their length and bytes are equal.


Declaration

public bool Equals(FixedList512Bytes<T> other);

Parameters

Parameter Description
other The list to compare for equality.

Returns

bool True if the two lists are equal.

Description

Returns true if this list and another list are equal.

Two lists are equal if their length and bytes are equal.


Declaration

public bool Equals(FixedList4096Bytes<T> other);

Parameters

Parameter Description
other The list to compare for equality.

Returns

bool True if the two lists are equal.

Description

Returns true if this list and another list are equal.

Two lists are equal if their length and bytes are equal.


Declaration

public bool Equals(Object obj);

Parameters

Parameter Description
obj An object to compare for equality.

Returns

bool True if the list is equal to the object.

Description

Returns true if the list is equal to an object.

Two lists are equal if their length and bytes are equal.

A FixedList"N"<T> can only be equal to another FixedList"N"<T> with the same "N" and T.