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

◆ ConvertToUtf32_ThrowInvalidArgs()

static void System.Char.ConvertToUtf32_ThrowInvalidArgs ( uint highSurrogateOffset)
inlinestaticprivate

Definition at line 792 of file Char.cs.

793 {
794 if (highSurrogateOffset > 1023)
795 {
796 throw new ArgumentOutOfRangeException("highSurrogate", SR.ArgumentOutOfRange_InvalidHighSurrogate);
797 }
798 throw new ArgumentOutOfRangeException("lowSurrogate", SR.ArgumentOutOfRange_InvalidLowSurrogate);
799 }

References System.SR.ArgumentOutOfRange_InvalidHighSurrogate, and System.SR.ArgumentOutOfRange_InvalidLowSurrogate.

Referenced by System.Char.ConvertToUtf32().