System.Utf8String.Equals C# (CSharp) Method

Equals() private method

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