Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Equals()
override
bool
System.Net.SocketAddress.Equals
(
object?
comparand
)
inline
Definition at line
110
of file
SocketAddress.cs
.
111
{
112
if
(!(comparand is
SocketAddress
socketAddress) ||
Size
!= socketAddress.Size)
113
{
114
return
false
;
115
}
116
for
(
int
i = 0;
i
<
Size
;
i
++)
117
{
118
if
(
this
[i] != socketAddress[i])
119
{
120
return
false
;
121
}
122
}
123
return
true
;
124
}
System.Net.SocketAddress.SocketAddress
SocketAddress(AddressFamily family)
Definition
SocketAddress.cs:48
System.Net.SocketAddress.Size
int Size
Definition
SocketAddress.cs:22
System.Text.RegularExpressions.ExceptionArgument.i
@ i
References
System.Net.SocketAddress.Size
.
System
Net
SocketAddress
Generated by
1.10.0