Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ContentsEqual()
static
bool
Internal.Cryptography.Helpers.ContentsEqual
(
this
byte[]
a1
,
byte[]
a2
)
inline
static
Definition at line
96
of file
Helpers.cs
.
97
{
98
if
(
a1
==
null
)
99
{
100
return
a2
==
null
;
101
}
102
if
(
a2
==
null
||
a1
.Length !=
a2
.Length)
103
{
104
return
false
;
105
}
106
for
(
int
i = 0;
i
<
a1
.Length;
i
++)
107
{
108
if
(
a1
[i] !=
a2
[i])
109
{
110
return
false
;
111
}
112
}
113
return
true
;
114
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Text.RegularExpressions.ExceptionArgument.i
@ i
Internal
Cryptography
Helpers
Generated by
1.10.0