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

◆ IsNullOrWhiteSpace()

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

Definition at line 1328 of file String.cs.

1329 {
1330 if ((object)value == null)
1331 {
1332 return true;
1333 }
1334 for (int i = 0; i < value.Length; i++)
1335 {
1336 if (!char.IsWhiteSpace(value[i]))
1337 {
1338 return false;
1339 }
1340 }
1341 return true;
1342 }

References System.value.