System.Text.BaseCodePageEncoding.LoadCodePageTables C# (CSharp) Method

LoadCodePageTables() private method

private LoadCodePageTables ( ) : void
return void
        private unsafe void LoadCodePageTables()
        {
            if (!FindCodePage(dataTableCodePage))
            {
                // Didn't have one
                throw new NotSupportedException(SR.Format(SR.NotSupported_NoCodepageData, CodePage));
            }

            // We had it, so load it
            LoadManagedCodePage();
        }