System.Utf8String.Equals C# (CSharp) 메소드

Equals() 개인적인 메소드

private Equals ( Utf8String s ) : bool
s Utf8String
리턴 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));
        }