Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
StringBuilderExtension.cs
Go to the documentation of this file.
1using System.Text;
2
3namespace ReLogic.Text;
4
5internal static class StringBuilderExtension
6{
7 internal static bool IsEmpty(this StringBuilder stringBuilder)
8 {
9 return stringBuilder.Length == 0;
10 }
11}
static bool IsEmpty(this StringBuilder stringBuilder)