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.
1using System;
2
4{
5 // Token: 0x0200065E RID: 1630
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
38 {
39 }
40 }
41}
override int IndexOf(string[] array, string value, int startIndex, int count)