terraria-cpp2il-methodrecon
v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
InternalStringComparer.cs
Go to the documentation of this file.
1
using
System
;
2
3
namespace
System.Collections.Generic
4
{
5
// Token: 0x0200065E RID: 1630
6
[
Serializable
]
7
internal
sealed
class
InternalStringComparer
:
EqualityComparer
<string>
8
{
9
// Token: 0x060031B6 RID: 12726 RVA: 0x0006B9D0 File Offset: 0x00069BD0
10
public
override
int
GetHashCode
(
string
obj
)
11
{
12
if
(
obj
!=
null
)
13
{
14
return
;
15
}
16
}
17
18
// Token: 0x060031B7 RID: 12727 RVA: 0x0006B9E4 File Offset: 0x00069BE4
19
public
override
bool
Equals
(
string
x,
string
y)
20
{
21
bool
flag;
22
if
(x !=
null
)
23
{
24
flag = x.Equals(y);
25
return
flag;
26
}
27
return
flag;
28
}
29
30
// Token: 0x060031B8 RID: 12728 RVA: 0x0006BA04 File Offset: 0x00069C04
31
internal
override
int
IndexOf
(
string
[]
array
,
string
value
,
int
startIndex
,
int
count
)
32
{
33
return
startIndex
;
34
}
35
36
// Token: 0x060031B9 RID: 12729 RVA: 0x0006BA14 File Offset: 0x00069C14
37
public
InternalStringComparer
()
38
{
39
}
40
}
41
}
System.Collections.Generic.EqualityComparer
Definition
EqualityComparer.cs:11
System.Collections.Generic.InternalStringComparer.InternalStringComparer
InternalStringComparer()
Definition
InternalStringComparer.cs:37
System.Collections.Generic.InternalStringComparer.GetHashCode
override int GetHashCode(string obj)
Definition
InternalStringComparer.cs:10
System.Collections.Generic.InternalStringComparer.Equals
override bool Equals(string x, string y)
Definition
InternalStringComparer.cs:19
System.Collections.Generic.InternalStringComparer.IndexOf
override int IndexOf(string[] array, string value, int startIndex, int count)
Definition
InternalStringComparer.cs:31
System.Collections.Generic.InternalStringComparer
Definition
InternalStringComparer.cs:8
System.Collections.Generic
Definition
ArrayBuilder.cs:5
System.Reflection.TypeAttributes.Serializable
@ Serializable
System.ExceptionArgument.startIndex
@ startIndex
System.ExceptionArgument.value
@ value
System.ExceptionArgument.obj
@ obj
System.ExceptionArgument.count
@ count
System.ExceptionArgument.array
@ array
System
Definition
__ComObject.cs:4
source
mscorlib
System
Collections
Generic
InternalStringComparer.cs
Generated by
1.10.0