System.Globalization.TextInfo.ChangeCaseSurrogate C# (CSharp) Method

ChangeCaseSurrogate() private method

private ChangeCaseSurrogate ( char highSurrogate, char lowSurrogate, char &resultHighSurrogate, char &resultLowSurrogate, bool isToUpper ) : void
highSurrogate char
lowSurrogate char
resultHighSurrogate char
resultLowSurrogate char
isToUpper bool
return void
        internal unsafe void ChangeCaseSurrogate(char highSurrogate, char lowSurrogate, out char resultHighSurrogate, out char resultLowSurrogate, bool isToUpper) {
            fixed (char* pResultChar1 = &resultHighSurrogate, pResultChar2 = &resultLowSurrogate) {
                nativeChangeCaseSurrogate(m_pNativeTextInfo, highSurrogate, lowSurrogate, pResultChar1, pResultChar2, isToUpper);
            }
        }