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

◆ IsSuffix() [2/2]

virtual bool System.Globalization.CompareInfo.IsSuffix ( string source,
string suffix,
CompareOptions options )
inlinevirtual

Definition at line 354 of file CompareInfo.cs.

355 {
356 while (suffix == null || source == null)
357 {
358 }
359 if (suffix._stringLength == 0 || source._stringLength != 0)
360 {
361 return true;
362 }
363 if (4096 == 0)
364 {
365 }
366 if (!true)
367 {
368 }
369 if (true)
370 {
371 return source.EndsWith(suffix, StringComparison.Ordinal);
372 }
373 return this.EndsWith(source, suffix, options);
374 }
bool EndsWith(string source, string suffix, CompareOptions options)

References System.Globalization.CompareInfo.EndsWith(), System.options, and System.source.