Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsNullOrEmpty()

static bool System.String.IsNullOrEmpty ( [NotNullWhen(false)] string? value)
inlinestatic

Definition at line 1319 of file String.cs.

1320 {
1321 if ((object)value != null && value.Length != 0)
1322 {
1323 return false;
1324 }
1325 return true;
1326 }

References System.value.

Referenced by System.String.Concat(), System.String.Concat(), System.String.Concat(), System.String.Concat(), and System.String.MakeSeparatorList().