System.Reflection.Emit.ScopeTree.AddLocalSymInfoToCurrentScope C# (CSharp) Method

AddLocalSymInfoToCurrentScope() private method

private AddLocalSymInfoToCurrentScope ( String strName, byte signature, int slot, int startOffset, int endOffset ) : void
strName String
signature byte
slot int
startOffset int
endOffset int
return void
        internal void AddLocalSymInfoToCurrentScope(
            String          strName,
            byte[]          signature,
            int             slot,
            int             startOffset,
            int             endOffset)
        {
            int         i = GetCurrentActiveScopeIndex();
            if (m_localSymInfos[i] == null)
            {
                m_localSymInfos[i] = new LocalSymInfo();
            }
            m_localSymInfos[i].AddLocalSymInfo(strName, signature, slot, startOffset, endOffset);
        }