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

◆ GetHashCode() [2/2]

override int System.Threading.Tasks.ValueTask< TResult >.GetHashCode ( )
inline

Definition at line 513 of file ValueTask.cs.

514 {
515 if (_obj == null)
516 {
517 if (_result == null)
518 {
519 return 0;
520 }
521 return _result.GetHashCode();
522 }
523 return _obj.GetHashCode();
524 }

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