System.Text.BaseCodePageEncoding.GetBestFitUnicodeToBytesData C# (CSharp) Метод

GetBestFitUnicodeToBytesData() приватный Метод

private GetBestFitUnicodeToBytesData ( ) : char[]
Результат 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;
        }