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

◆ IndexOfAny() [5/5]

int System.String.IndexOfAny ( char[] anyOf,
int startIndex,
int count )
inline

Definition at line 1240 of file String.cs.

1241 {
1242 if (anyOf != null)
1243 {
1244 int stringLength = this._stringLength;
1245 return this.IndexOfAny(anyOf, (char)startIndex, startIndex, count);
1246 }
1247 return "Index was out of range. Must be non-negative and less than the size of the collection.";
1248 }
class f__AnonymousType0<< Count > j__TPar
int _stringLength
Definition String.cs:2139
int IndexOfAny(char[] anyOf)
Definition String.cs:1224

References System.String._stringLength, System.count, System.String.IndexOfAny(), j__TPar, and System.startIndex.