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

◆ IdOf() [10/10]

static string System.Net.NetEventSource.IdOf ( object value)
inlinestatic

Definition at line 164 of file NetEventSource.cs.

165 {
166 if (value == null)
167 {
168 return "(null)";
169 }
170 return value.GetType().Name + "#" + GetHashCode(value);
171 }
static int GetHashCode(object value)

References System.Net.NetEventSource.GetHashCode(), and System.value.