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

GetBestFitUnicodeToBytesData() private method

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

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

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