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

◆ Equals() [3/3]

bool System.Net.Sockets.UdpReceiveResult.Equals ( UdpReceiveResult other)
inline

Definition at line 47 of file UdpReceiveResult.cs.

48 {
49 if (object.Equals(_buffer, other._buffer))
50 {
51 return object.Equals(_remoteEndPoint, other._remoteEndPoint);
52 }
53 return false;
54 }

References System.Net.Sockets.UdpReceiveResult._buffer, System.Net.Sockets.UdpReceiveResult._remoteEndPoint, System.Net.Equals, and System.other.