System.Globalization.CultureTableRecord.InitEverettDataItemToLCIDMappings C# (CSharp) Method

InitEverettDataItemToLCIDMappings() private static method

private static InitEverettDataItemToLCIDMappings ( ) : void
return void
        private static unsafe void InitEverettDataItemToLCIDMappings()
        {
            if (m_EverettDataItemToLCIDMappings == null)
            {
                int* temp = CultureInfo.nativeGetStaticInt32DataTable(INT32TABLE_EVERETT_DATA_ITEM_TO_LCID_MAPPINGS, out m_EverettDataItemToLCIDMappingsSize);
                m_EverettDataItemToLCIDMappings = temp;
                BCLDebug.Assert(m_EverettDataItemToLCIDMappings != null, "CultureTableRecord.m_EverettDataItemToLCIDMappings can not be null");
                BCLDebug.Assert(m_EverettDataItemToLCIDMappingsSize > 0, "CultureTableRecord.m_EverettDataItemToLCIDMappingsSize > 0");
            }
        }