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

◆ Concat() [5/6]

static string System.String.Concat ( string str0,
string str1,
string str2 )
inlinestatic

Definition at line 446 of file String.cs.

447 {
448 string text;
449 if (str0 == null || str0._stringLength == 0)
450 {
451 text = str0 + str1;
452 return text;
453 }
454 if (str1 != null && str1._stringLength != 0)
455 {
456 int stringLength = str0._stringLength;
457 return str0;
458 }
459 return text;
460 }
class f__AnonymousType0<< Count > j__TPar

References j__TPar, and System.text.