Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Equals() [6/6]

Definition at line 535 of file ValueTask.cs.

536 {
537 if (_obj == null && other._obj == null)
538 {
539 return EqualityComparer<TResult>.Default.Equals(_result, other._result);
540 }
541 if (_obj == other._obj)
542 {
543 return _token == other._token;
544 }
545 return false;
546 }

References System.Threading.Tasks.ValueTask< TResult >._obj, System.Threading.Tasks.ValueTask< TResult >._result, System.Threading.Tasks.ValueTask< TResult >._token, and System.other.