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

◆ ParseCombiningCharacters()

static int[] System.Globalization.StringInfo.ParseCombiningCharacters ( string str)
inlinestatic

Definition at line 154 of file StringInfo.cs.

155 {
156 if (str == null)
157 {
158 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.str);
159 }
163 while (!str2.IsEmpty)
164 {
165 valueListBuilder.Append(str.Length - str2.Length);
167 }
168 int[] result = valueListBuilder.AsSpan().ToArray();
169 valueListBuilder.Dispose();
170 return result;
171 }
static int GetNextTextElementLength(string str)

References System.Globalization.StringInfo.GetNextTextElementLength(), System.str, and System.ThrowHelper.ThrowArgumentNullException().