System.Utf8String.Utf8String C# (CSharp) Method

Utf8String() private method

private Utf8String ( void pStringHeap ) : System.Runtime.CompilerServices
pStringHeap void
return System.Runtime.CompilerServices
        internal unsafe Utf8String(void* pStringHeap)
        {
            this.m_pStringHeap = pStringHeap;
            if (pStringHeap != null)
            {
                this.m_StringHeapByteLength = GetUtf8StringByteLength(pStringHeap);
            }
            else
            {
                this.m_StringHeapByteLength = 0;
            }
        }

Same methods

Utf8String::Utf8String ( void pUtf8String, int cUtf8String ) : System.Runtime.CompilerServices