System.Utf8String.EqualsCaseInsensitive C# (CSharp) Method

EqualsCaseInsensitive() private method

private EqualsCaseInsensitive ( Utf8String s ) : bool
s Utf8String
return bool
        internal unsafe bool EqualsCaseInsensitive(Utf8String s)
        {
            if (this.m_pStringHeap == null)
            {
                return (s.m_StringHeapByteLength == 0);
            }
            return (((s.m_StringHeapByteLength == this.m_StringHeapByteLength) && (this.m_StringHeapByteLength != 0)) && EqualsCaseInsensitive(s.m_pStringHeap, this.m_pStringHeap, this.m_StringHeapByteLength));
        }

Same methods

Utf8String::EqualsCaseInsensitive ( void szLhs, void szRhs, int cSz ) : bool

Usage Example

Esempio n. 1
0
 internal unsafe bool EqualsCaseInsensitive(Utf8String s)
 {
     if ((IntPtr)this.m_pStringHeap == IntPtr.Zero)
     {
         return(s.m_StringHeapByteLength == 0);
     }
     if (s.m_StringHeapByteLength == this.m_StringHeapByteLength && this.m_StringHeapByteLength != 0)
     {
         return(Utf8String.EqualsCaseInsensitive(s.m_pStringHeap, this.m_pStringHeap, this.m_StringHeapByteLength));
     }
     return(false);
 }
All Usage Examples Of System.Utf8String::EqualsCaseInsensitive