OTFontFile.Table_PCLT.GetFileName C# (CSharp) Метод

GetFileName() публичный Метод

public GetFileName ( ) : string
Результат string
        public string GetFileName()
        {
            char [] charBuf = new char[6];

            ASCIIEncoding ae = new ASCIIEncoding();
            Decoder d = ae.GetDecoder();

            d.GetChars(FileName, 0, 6, charBuf, 0);

            return new string(charBuf);
        }