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

GetBestFitBytesToUnicodeData() private method

private GetBestFitBytesToUnicodeData ( ) : char[]
return char[]
        internal char[] GetBestFitBytesToUnicodeData()
        {
            // Read in our best fit table if necessary
            if (arrayBytesBestFit == null) ReadBestFitTable();

            Debug.Assert(arrayBytesBestFit != null, "[BaseCodePageEncoding.GetBestFitBytesToUnicodeData]Expected non-null arrayBytesBestFit");

            // Normally we don't have any best fit data.
            return arrayBytesBestFit;
        }