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

◆ GetHashCode() [2/2]

static int System.Net.Http.Headers.NameValueHeaderValue.GetHashCode ( ObjectCollection< NameValueHeaderValue > values)
inlinestaticpackageinherited

Definition at line 146 of file NameValueHeaderValue.cs.

147 {
148 if (values == null || values.Count == 0)
149 {
150 return 0;
151 }
152 int num = 0;
154 {
155 num ^= value.GetHashCode();
156 }
157 return num;
158 }

References System.value, and System.values.