System.Globalization.TextInfo.ChangeCaseSurrogate C# (CSharp) 메소드

ChangeCaseSurrogate() 개인적인 메소드

private ChangeCaseSurrogate ( char highSurrogate, char lowSurrogate, char &resultHighSurrogate, char &resultLowSurrogate, bool isToUpper ) : void
highSurrogate char
lowSurrogate char
resultHighSurrogate char
resultLowSurrogate char
isToUpper bool
리턴 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);
            }
        }