9 references to M_strAcePrefix
mscorlib (9)
system\globalization\idnmapping.cs (9)
593
output.Append(
M_strAcePrefix
);
667
output.Remove(iOutputAfterLastDot,
M_strAcePrefix
.Length);
672
if (unicode.Length - iAfterLastDot >=
M_strAcePrefix
.Length &&
673
unicode.Substring(iAfterLastDot,
M_strAcePrefix
.Length).Equals(
674
M_strAcePrefix
, StringComparison.OrdinalIgnoreCase))
854
if (ascii.Length <
M_strAcePrefix
.Length + iAfterLastDot ||
855
!ascii.Substring(iAfterLastDot,
M_strAcePrefix
.Length).Equals(
856
M_strAcePrefix
, StringComparison.OrdinalIgnoreCase))
876
iAfterLastDot +=
M_strAcePrefix
.Length;