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

InitEverettRegionDataItemToLCIDMappings() private static method

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