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

◆ IndexOfHtmlDecodingChars()

static int System.Net.WebUtility.IndexOfHtmlDecodingChars ( ReadOnlySpan< char > input)
inlinestaticprivate

Definition at line 909 of file WebUtility.cs.

910 {
911 for (int i = 0; i < input.Length; i++)
912 {
913 char c = input[i];
914 if (c == '&' || char.IsSurrogate(c))
915 {
916 return i;
917 }
918 }
919 return -1;
920 }

References System.input.

Referenced by System.Net.WebUtility.HtmlDecode(), and System.Net.WebUtility.HtmlDecode().